I have some numbers and some uncalculated formulas as follows:
Now, I want to add them all up by using the sum formula
but I want to add only the valid numbers (123, 567 and 856) and ignore the uncalculated formulas (#VALUE! and #DIV/0!).
Any way to do that?
Code:
A1: 123
A2: 567
A3: #VALUE!
A4: 856
A5: #DIV/0!
Now, I want to add them all up by using the sum formula
Code:
=SUM(A1:A5)
Any way to do that?