Have the following if statement that populates a cell (B2) within a Excel 2007 worksheet with a value if column A is not blank.
The formula currently returns the value of "Now()" as a serial value.
My objective is to append the result of the vlookup with today's date and time - the date and time that the vlookup was performed.
What modifications to the IF statement is needed to accomplish objective?
Will continue to troubleshoot but appreciate any insight.
The formula currently returns the value of "Now()" as a serial value.
My objective is to append the result of the vlookup with today's date and time - the date and time that the vlookup was performed.
Code:
=IF(A2="","",IF(ISERROR(VLOOKUP(A2,AcctNbrsOnWksht,1,FALSE)),"Yes","AlreadyOnWksht" & " as of " &NOW()))
What modifications to the IF statement is needed to accomplish objective?
Will continue to troubleshoot but appreciate any insight.