If “0” then leave the cell blank

前端 未结 7 983
庸人自扰
庸人自扰 2020-12-10 01:37

I am trying to create a simple ledger and on the far right of the \"Book\" it totals any debit/credit that I input. But instead of leaving the unused rows blank, it keeps re

相关标签:
7条回答
  • 2020-12-10 02:30

    =iferror(1/ (1/ H15+G16-F16 ), "")

    this way avoids repeating the central calculation (which can often be much longer or more processor hungry than the one you have here...

    enjoy

    0 讨论(0)
提交回复
热议问题