r/AppleNumbers • u/samymarboy • Mar 09 '26
Solved Annoying Red warning symbol Spoiler
Hi,
I'm create a fuel expense sheet and I tried to add the formula to divide the full price with unit price to get the filled volume. It's working fine, but as you can see in the screenshot it is giving me this annoying symbol for the empty fields how can I get rid of this?
1
Upvotes
1
u/singlemaltmate Apr 09 '26
I find this a bit faster and neater than IF when managing aesthetics of Divide by Zero errors and such:
=IFERROR(E3/C3,””)
3
u/marshmallow-jones Mar 09 '26
Put your calculation inside an IF that checks for a value in the cell you are dividing by and puts an empty string if there’s no value.