Dashboard Mode - IFERROR and IFNA
Goal
Find total sales per product and handle errors gracefully when data is missing or incorrect.
Find total sales per product and handle errors gracefully when data is missing or incorrect.
| Product | Sales Q1 | Sales Q2 | Sales Q3 |
|---|---|---|---|
| Apples | 100 | 150 | 200 |
| Bananas | 80 | #N/A | 120 |
| Cherries | 50 | 70 | #ERROR! |
| Dates | #N/A | 60 | 90 |
| Elderberries | 40 | 50 | 60 |
=IFERROR(B2+C2+D2, 0)=IFNA(B3+C3+D3, 0)=IFERROR(B2+C2+D2, 0) and drag down.=IF(ISERROR(B2+C2+D2), "Error Found", "No Error")+----------------------+----------------------+----------------------+ | Sample Data | Total Sales (IFERROR) | Total Sales (IFNA) | | (Table with products)| (KPI cards/table) | (KPI cards/table) | +----------------------+----------------------+----------------------+ | Error Check Column | | | +----------------------+----------------------+----------------------+
Add a filter to select a product name. When you pick a product, the total sales with IFERROR and IFNA update to show only that product's data. The error check column also updates to show if that product has errors.
If you filter to show only "Bananas", which have a missing value (#N/A) in Q2, what will the total sales show using IFERROR and IFNA formulas? Which error check message appears?