Forum Discussion
Dmills958
Nov 30, 2020Copper Contributor
I have a long IF statement and need to return blank so I can use those cells for another statement
E F G H I J K Win 0.5 -130 0.38 $1.38 Win 0.5 -145 0.34 ...
SergeiBaklan
Nov 30, 2020Diamond Contributor
It's better to wrap your initial formulas with IFERROR() to return zero or empty text instead of errors. SUM() ignores all texts.
But if you need to show errors you may use something like =AGGREGATE(9,6,range) to sum ignoring errors.