Hi there!
I'm trying to make an "Index" page that will update the time a sheet in the workbook was edited.
so far the code I put in each worksheet is
Then I'm calling the Value of A1 in the Index sheet. I've been getting a run time error from the code, and the best I can figure is it's a logic loop.
When it updates the time it changes the page witch updates the time so on and so forth.
Any help ya'll could provide would be wonderful. I'm new to VBA and feel like I'm stumbling around in the dark.
I'm trying to make an "Index" page that will update the time a sheet in the workbook was edited.
so far the code I put in each worksheet is
Code:
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
Range("A1").Value = Now()
End Sub
When it updates the time it changes the page witch updates the time so on and so forth.
Any help ya'll could provide would be wonderful. I'm new to VBA and feel like I'm stumbling around in the dark.