Last updated Macro.

michaelhill94

New Member
Joined
Jul 11, 2013
Messages
27
I would like to have a macro which displays in one spreadsheet when sections of other worksheets were updated. So for example in sheet A in cell B4 I would like it display when any cells in between A3:10 and C3:10 in sheet C were last changed, in Sheet A cell B5 I would like it to display when any cell in between E3:10 and F3:10 A 12. I really don't know what I'm doing so any help would be greatly appreciated!
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Here is something you can adapt. Goes into the code module of the worksheet (right click tab & View Code.

Code:
'========================================================
'- LOG WORKSHEET CHANGES
'- puts date into appropriate cell of worksheet "ChangeLog"
'- Ignores cells with "x" in the Log Sheet
'- Brian Baulsom August 2013
'========================================================
Private Sub Worksheet_Change(ByVal Target As Range)
    Dim CellRef As String
    Dim LogSheet As Worksheet
    Set LogSheet = Worksheets("ChangeLog")
    CellRef = ActiveCell.Address
    '----------------------------------------------------
    '- Date to Log
    With LogSheet.Range(CellRef)
        If .Value <> "x" Then
            .Value = Date
        End If
    End With
    '-----------------------------------------------------
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,003
Messages
6,122,655
Members
449,091
Latest member
peppernaut

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top