I am trying to define my formulas so if I use a value for something else it makes easier to follow. But I can't get it it work. I was hoping to get some help.
What happens is in the appropriate Cell I get a 1/1/00 instead of the date that is in cell A & LR
Code:
'Today's Date Function
CurrentDate = Range("K" & LR - 3).Formula = "=" & "A" & LR - 4
Range("K" & LR - 3).Value = (CurrentDate)
Range("K" & LR - 3).Select
With Selection
.NumberFormat = "m/dd/yy"
End With
What happens is in the appropriate Cell I get a 1/1/00 instead of the date that is in cell A & LR