cell A1 always has a number changes once every day (only Cell A1).
i want to track that number with that date, i come back to it any time.
Private Sub Worksheet_Change(ByVal Target As Range)
Dim Rng As Range
Dim oldvalue As Long
oldvalue = Range("A1")
Dim LR As Long
LR = Range("F" & Rows.Count).End(xlUp).Row + 1
Set Rng = Target.Parent.Range("A1")
If Target.Count > 1 Then Exit Sub
If Intersect(Target, Rng) Is Nothing Then Exit Sub
Range("F" & LR) = oldvalue
Range("G" & LR) = Date
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
Dim oldvalue As Long
Dim Rng As Range
Dim LR As Long
oldvalue = Range("A1")
Set Rng = Target.Parent.Range("A1")
If Target.Count > 1 Then Exit Sub
If Intersect(Target, Rng) Is Nothing Then Exit Sub
With Sheets("List")
LR = .Range("A" & .Rows.Count).End(xlUp).Row + 1
.Range("A" & LR) = oldvalue
.Range("B" & LR) = Date
End With
End Sub
cell A1 should be in the same sheet also