Have Excel formulas that return 0, make the result blank

前端 未结 14 1995
别那么骄傲
别那么骄傲 2020-12-31 09:45

A recurring Excel problem I have is formulas such as INDEX(array,row,column) that return 0 when there\'s no result, rather than returning blank.

What is

14条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-31 10:06

    The normal way would be the IF statement, though simpler than your example:

    =IF(INDEX(a,b,c),INDEX(a,b,c),"")
    

    No need to do gyrations with the formula, since zero values trigger the false condition.

提交回复
热议问题