Hi,
I have a Excel workbook that consists of approx 150-200 worksheets. I used the following code to add date/time stamps to each individual worksheet within the workbook.
I would now like to create a print function that will print out only the most recent (since I last saved) changes to worksheets within the workbook. Is this possible? If so, how would I do it?
Thanks,
Jen
Private Sub Worksheet_Change(ByVal Target As Range)
Dim Cell As Range
For Each Cell In Target
With Cell
If .Column = Range("G:G".Column Then
Cells(.Row, "F".Value = Int(Now)
End If
End With
Next Cell
End Sub
I have a Excel workbook that consists of approx 150-200 worksheets. I used the following code to add date/time stamps to each individual worksheet within the workbook.
I would now like to create a print function that will print out only the most recent (since I last saved) changes to worksheets within the workbook. Is this possible? If so, how would I do it?
Thanks,
Jen
Private Sub Worksheet_Change(ByVal Target As Range)
Dim Cell As Range
For Each Cell In Target
With Cell
If .Column = Range("G:G".Column Then
Cells(.Row, "F".Value = Int(Now)
End If
End With
Next Cell
End Sub