Hi,
I am trying to do the following
In column A from A2 downwards if a cell I notblank then the cell in column F will contain todays date "NOW()"
ie, Cell A2 is not blank therefore cell F2 will contain todays date.
I am using this VBA at the moment, but it does not work.
I am trying to do the following
In column A from A2 downwards if a cell I notblank then the cell in column F will contain todays date "NOW()"
ie, Cell A2 is not blank therefore cell F2 will contain todays date.
I am using this VBA at the moment, but it does not work.
Code:
Sub Start_Date()
With Range("A2:H1000")
.Formula = "=if(A2="""","""",F2=Now())"
.Value = .Value
End With
End Sub