Discover how one simple function can save you hours of tedious formula editing!
Why INDIRECT for dynamic references in Google Sheets? - Purpose & Use Cases
Imagine you have a big spreadsheet with many sheets named after months like January, February, March, and so on. You want to pull sales data from each month's sheet into a summary sheet. Doing this manually means typing each sheet name into formulas one by one.
Manually changing sheet names in formulas is slow and boring. If you want to see data for April instead of March, you have to edit every formula. This wastes time and can cause mistakes if you miss one.
The INDIRECT function lets you build a formula that changes automatically based on a cell's value. You can type the month name in one cell, and INDIRECT will use that to get data from the right sheet without changing formulas manually.
=January!B2 =February!B2 =March!B2
=INDIRECT(A1 & "!B2")With INDIRECT, you can create flexible formulas that update instantly when you change a simple input, saving time and avoiding errors.
A sales manager types the month name in a cell, and the summary sheet shows that month's total sales automatically, without rewriting formulas every time.
Manually changing sheet names in formulas is slow and error-prone.
INDIRECT builds references from text, making formulas dynamic.
This saves time and reduces mistakes when working with multiple sheets.