Hey!
I had this VBA code working until i put a formula in in J15 in the "Data" workbook.
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("J15")) Is Nothing Then Exit Sub
Range("K18") = Now()
End Sub
My plan is to paste the data from A1 in "hej.xlsm" to J15 in "Data.xlsm" based on current date. And in K18 in "Data.xlsm" i want to see when the value in the J15 cell was last changed or updated. As i mentioned, as soon as a formula changes the cells value it stopped working.
Any ideas?
I had this VBA code working until i put a formula in in J15 in the "Data" workbook.
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("J15")) Is Nothing Then Exit Sub
Range("K18") = Now()
End Sub
My plan is to paste the data from A1 in "hej.xlsm" to J15 in "Data.xlsm" based on current date. And in K18 in "Data.xlsm" i want to see when the value in the J15 cell was last changed or updated. As i mentioned, as soon as a formula changes the cells value it stopped working.
Any ideas?