In Excel, I need to return a value of 1 if a referenced cell is empty
1
I can do it if the value is zero but how do I do it if it is empty?
zero
You may have to use =IF(ISNUMBER(A1),A1,1) in some situations where you are looking for number values in cell.
=IF(ISNUMBER(A1),A1,1)