Works great, Thanks again Simon. One questions, is there a way to save the readings sheet and not have the Macro that is on the sheet saved with it. ie the readings sheets has this:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim Rng As Range
For Each Rng In Target
If Not Application.Intersect(Columns(Rng.Column), Columns(6)) Is Nothing Then
Application.EnableEvents = False
Cells(Rng.Row, "A").Value = Now()
Application.EnableEvents = True
End If
Next Rng
Application.EnableEvents = True
End Sub
It freaks the operators out when they go to open the saved sheet and they are not sure what to-do. Can I add the code to a module so its not attached to the workbook when saved?
Thanks,
Martin
Bookmarks