Results 1 to 6 of 6

Check if there is a change in cell

Threaded View

  1. #6
    Forum Expert Logit's Avatar
    Join Date
    12-23-2012
    Location
    North Carolina
    MS-Off Ver
    Excel 2019 Professional Plus - 2007 Enterprise
    Posts
    7,411

    Re: Check if there is a change in cell

    .
    Gotcha !

    There are several things you will need to do to accomplish your goal.

    In the ThisWorkbook module, you can place this macro :

    Private Sub Workbook_BeforeClose(Cancel As Boolean)
    
    	'The name of your macro
    	SaveOrNotMacro
    
        	Application.DisplayAlerts = False
      
        	Application.Quit
    
    End Sub
    The SaveOrNotMacro (or any other name you like) is the macro you will create in a Regular Module. This macro will give the user the opportunity to
    save or not save the changes made .... when they close the workbook.

    The macro will have similar logic from your posted macro :

    Sub SaveOrNot ()
    Dim LRsp As Long
    
    Beep
            LRsp = MsgBox("Do you want to Save Changes made? ", vbQuestion + vbYesNo, "CHANGES")
    
            If LRsp = vbYes Then
              	UpdateLogRecord
            Else
    		'leave this area blank as it will cause the logic to go straight to the
    		'Workbook_BeforeClose event ... closing the workbook without saving.
            End If
    End Sub
    I haven't tested the above macro here. There may be some required changes.
    Last edited by Logit; 08-27-2020 at 06:13 PM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. check if cell to the right is empty and then change formula
    By ammartino44 in forum Excel General
    Replies: 3
    Last Post: 09-14-2015, 10:49 AM
  2. Check boxes that delete other check boxes and change the color of another cell.
    By nhamhamilton in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 10-29-2014, 02:40 PM
  3. [SOLVED] Check dates in column and change cell color
    By Nu2Java in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 04-09-2013, 06:24 PM
  4. [SOLVED] Change linked cell in check box
    By JJGF in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 12-22-2012, 03:12 AM
  5. Check & Change Cell contents after entry
    By FRIEL in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 05-16-2011, 10:25 AM
  6. Replies: 2
    Last Post: 07-03-2009, 03:24 PM
  7. [SOLVED] How do I change the size of a check box to fit cell?
    By MTE in forum Excel General
    Replies: 0
    Last Post: 04-27-2006, 11:10 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1