Dashboard Mode - INDIRECT for dynamic references
Dashboard Goal
See sales totals for different months by selecting the month name. The dashboard updates automatically to show the total sales for the chosen month.
See sales totals for different months by selecting the month name. The dashboard updates automatically to show the total sales for the chosen month.
| Month | Sales |
|---|---|
| January | 100 |
| February | 150 |
| March | 200 |
| April | 250 |
| May | 300 |
| June | 350 |
B9 with data validation list of months (January to June).A2:B7 with months and sales.B11 shows total sales for the selected month using formula:=INDIRECT("B" & MATCH(B9, A2:A7, 0) + 1)+----------------------+------------------+ | Month Selection (B9) | Total Sales (B11) | +----------------------+------------------+ | | | | Sales Data Table | | | (A2:B7) | | +----------------------+------------------+
User selects a month from the dropdown in cell B9. The formula in B11 uses INDIRECT combined with MATCH to find the sales value for that month dynamically. When the month changes, the total sales value updates automatically.
If you change the month selection in B9 to "April", what value appears in B11? (Answer: 250)