Need to show a zero instead of a blank field in Numbers
I get a spreadsheet on a daily basis that has numbers in several columns. Some have numbers ranging from 0 to 9999, and some cells are blank. I need all blank cells to instead show a zero.
I found a formula in an answer to the exact opposite question, which asked how to show a blank cell if the cell's value was zero. However, their sample that is supposed to show a blank cell instead shows an error since it references its own cell in the formula:
=IF(A1=0, "", A1)
The result is:
"This formula can’t reference its own cell, or depend on another formula that references this cell."
The only work-around I have figured out is to add columns to show the results of the columns, then hide the columns that hold the actual data.
I'd rather not have to do that every day, so any advice would be most appreciated!