I am trying to write an formula that tests for a null value before executing the remainder of the formula. Here is the existing formula in cell M2:
=VLOOKUP(A2,'Sheet2'!$A$2:$J$613,6,FALSE)
What I'd like is to insert an IF test for A2: If A2 is not null/blank, then perform the VLOOKUP. If A2 is null/blank, leave cell M2 blank.
=VLOOKUP(A2,'Sheet2'!$A$2:$J$613,6,FALSE)
What I'd like is to insert an IF test for A2: If A2 is not null/blank, then perform the VLOOKUP. If A2 is null/blank, leave cell M2 blank.