Question
Is it possible to replace '#DIV/0!' errors with a custom text like 'N/A' in a pivot table?
Asked by: USER3213
90 Viewed
90 Answers
Answer (90)
Yes, you can replace '#DIV/0!' with custom text like 'N/A' using the IFERROR function. For example: `IFERROR('Sales'/'Units', "N/A")`. This will display 'N/A' instead of the error message.