Hi,
I have a code which enters today's date in a cell when any changes are made on the sheet.
There are 5 sheets, all with the same code.
Since I introduced this code I get a 'Stack Space' issue.
Do I need to restrict the sheet range to use less memory?
Static Sub Worksheet_Change(ByVal Target As Range)
Dim LDate As String
LDate = Date
Range("P8").Value = Date
End Sub
I have a code which enters today's date in a cell when any changes are made on the sheet.
There are 5 sheets, all with the same code.
Since I introduced this code I get a 'Stack Space' issue.
Do I need to restrict the sheet range to use less memory?
Static Sub Worksheet_Change(ByVal Target As Range)
Dim LDate As String
LDate = Date
Range("P8").Value = Date
End Sub