Ignore formula errors
Anyway to ignore these errors so the AVERAGE of the column will show at the bottom? The formula to the right of the selected box is just a math equation, but that column also needs to ignore errors.
Thank you :)
You can make a difference in the Apple Support Community!
When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.
When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.
Anyway to ignore these errors so the AVERAGE of the column will show at the bottom? The formula to the right of the selected box is just a math equation, but that column also needs to ignore errors.
Thank you :)
What is causing the error flag? Difficult to tell with the formula display sitting in front of cells that may be contributing to the error.
What is the error message you see when clicking (each) error flag?
Wrapping the formulas in IFERROR could be used to avoid the error message and replace the flag with a null string, leaving an apparently 'blank' cell, and, assuming the formula in column D is pulling values only from 'this row' and 'previous row' of column C, should not accect the results in rows currentlly not showing an error flag.
Syntax for IFERROR is pretty simple:
IFERROR(existingformula,"")
Regards,
Barry
What is causing the error flag? Difficult to tell with the formula display sitting in front of cells that may be contributing to the error.
What is the error message you see when clicking (each) error flag?
Wrapping the formulas in IFERROR could be used to avoid the error message and replace the flag with a null string, leaving an apparently 'blank' cell, and, assuming the formula in column D is pulling values only from 'this row' and 'previous row' of column C, should not accect the results in rows currentlly not showing an error flag.
Syntax for IFERROR is pretty simple:
IFERROR(existingformula,"")
Regards,
Barry
Thanks you Barry. I had to play around with it a little but figured it out.
Ignore formula errors