Return a value of '1' a referenced cell is empty

前端 未结 9 495
闹比i
闹比i 2020-12-17 07:47

In Excel, I need to return a value of 1 if a referenced cell is empty

I can do it if the value is zero but how do I do it if it is empty?

9条回答
  •  半阙折子戏
    2020-12-17 08:06

    =if(a1="","1","0")
    

    In this formula if the cell is empty then the result would be 1 else it would be 0

提交回复
热议问题