Dim L As Date
Dim T As Date
Sheets("Overvie w").Select
L = Worksheets(2).C ells(2, 12)
If Today >= L Then
...
The date in the cell is set to a day in 1986 and still the IF is never true. - Strange enough it only runs when I erase the date in the cell.
Can anybody see why?
Dim T As Date
Sheets("Overvie w").Select
L = Worksheets(2).C ells(2, 12)
If Today >= L Then
...
The date in the cell is set to a day in 1986 and still the IF is never true. - Strange enough it only runs when I erase the date in the cell.
Can anybody see why?
Comment