Dashboard Mode - INDIRECT for dynamic references
Dashboard Goal
Help a sales manager quickly see total sales for any chosen month by dynamically changing the data reference.
Help a sales manager quickly see total sales for any chosen month by dynamically changing the data reference.
| Month | Sales |
|---|---|
| January | 100 |
| February | 150 |
| March | 200 |
| April | 250 |
| May | 300 |
| June | 350 |
January, February, March, April, May, June.=INDIRECT("B" & MATCH(B9, A2:A7, 0) + 1)+----------------------+-----------------+ | Sales Table | Dropdown Selector| | (A2:B7) | (B9) | | | | +----------------------+-----------------+ | Total Sales Display (B10) | +------------------------------------------+
When the user picks a month from the dropdown in cell B9, the INDIRECT formula in B10 updates to show that month's sales. This happens because the formula dynamically finds the row of the selected month and returns the sales value from column B.
If you change the dropdown in B9 to "April", what value appears in B10?
Answer: 250