Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Range("A1"), Target) Is Nothing Then
With Sheets("Master Data Date").Range("A1")
.Value = Date
End With
End If
End Sub
try this:This code works great,
Is there anyway though that I can change it a little so that if i write a number anywhere in row A it stamps the date in the mirrored cell on the sheet called Master Data Date, For example when i populate cell A22 it stamps the date in A22 on the Master Data Date sheet or if was to populate A55 it stamps A55 on the Master Data Date sheet
Thanks
Rob
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Rows(1), Target) Is Nothing Then
With Sheets("Master Data Date").Cells(1, Target.Column)
.Value = Date
End With
End If
End Sub
The code I posted in Post #7 does the mirroring for me. Please ensure you use that code. Replace what you have now with it.This works but only puts the date stamp in cell A1,
I need it to sort of mirror the cell in the sheet where i have entered the value.
for example if i put a number in cell A4 it needs to put the date in cell a4 on the sheet master data date.
Thanks mate!!
Rob