A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
I have a formula =sum(C15-C16)/C17 The formula works but when there are not numbers in the cells in the worksheet I get an error value. How do I nest the IFERROR function around that formula?
Thanks!
Try this:
=IFERROR(SUM(C15-C16)/C17),"what you want instead of the error")
or just
=IFERROR((C15-C16)/C17),"what you want instead of the error")
Hope this helps / Lars-Åke