+ Reply to Thread
Results 1 to 3 of 3

Saving on cell value change

Hybrid View

  1. #1
    Registered User
    Join Date
    03-09-2012
    Location
    Cape Town, South Africa
    MS-Off Ver
    Excel 2010
    Posts
    61

    Saving on cell value change

    Hi,

    I'm trying to save the active workbook whenever a cell is changed. I've found a few different ways of doing it online, but none of them seem to be working for me. Here is an example:
    Sub Worksheet_Change(ByVal Target As Range)
        Dim BkpTgt As Range, RangeToWatch As Range, Cel As Range
        Dim MustSave As Boolean
        'set here which cells' change initiates saving of the workbook
        Set RangeToWatch = Range("A1:A10,D11,F:F")
        'if the changed cell is not part of the watched range, exit
    '    If Intersect(Target, RangeToWatch) Is Nothing Then Exit Sub
        
        'Examining each cell that has changed AND, ALSO, is part of the watched range
        For Each Cel In Intersect(Target, RangeToWatch).Cells
            'defining the backup area of the changed cell(s)
            Set BkpTgt = ThisWorkbook.Sheets("backup").Range(Cel.Address)
            'checking if it has changed
            If Cel.Value <> BkpTgt.Value Then
                MustSave = True
                'backing up the changed value
                BkpTgt.Value = Target.Value
            End If
        Next
        If MustSave Then thisworkbook.save
    End Sub
    The guys on the forum said it was working, but for some reason I can't get it to run. It seems at though it doesn't even enter the code at all, because I put a break point right at the beginning and nothing happened.

    Another example I found was:
    Private Sub Worksheet_Change(ByVal Target As Range)
    MsgBox "Hey! Cell " & Target.Address(0, 0) & " just changed!", , "FYI"
    End Sub
    But again, it doesn't seem at though VBA ever tries to execute this code.

    Any help would be greatly appreciated!

    Thanks

    Mike

  2. #2
    Registered User
    Join Date
    10-30-2012
    Location
    Modlin , Poland
    MS-Off Ver
    Excel 2003, Excel 2007
    Posts
    42

    Re: Saving on cell value change

    second code is working
    check this code maybe is in a module instead of in the worksheet code, and try

  3. #3
    Registered User
    Join Date
    03-09-2012
    Location
    Cape Town, South Africa
    MS-Off Ver
    Excel 2010
    Posts
    61

    Re: Saving on cell value change

    Excellent! You're right, it was in a module, not in the worksheet object itself.

    Thanks for the help!

    Mike

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. After saving the invoice with new name using VBA code colors and format change
    By poras in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 06-23-2013, 05:56 AM
  2. Replies: 5
    Last Post: 05-28-2013, 01:04 PM
  3. Replies: 1
    Last Post: 10-28-2011, 01:30 AM
  4. [SOLVED] How do I change the default location when saving Email attachment
    By Bob from Bristol in forum Excel General
    Replies: 1
    Last Post: 12-13-2005, 04:50 PM
  5. [SOLVED] saving change in toolbar
    By James in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 02-10-2005, 04:06 PM

Tags for this Thread

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