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
=if(a1="","1","0")
In this formula if the cell is empty then the result would be 1 else it would be 0
0