How do I use INDIRECT in Excel?
Use INDIRECT when you want to turn text into a cell reference. Enter Reference text, Reference style in that order, then add optional arguments when needed.
Converts text to a cell reference.
INDIRECT(ref_text, [a1])ref_text
RequiredEnter a date/reference-related value.
a1
OptionalSet reference style. TRUE/omitted = A1 style, FALSE = R1C1 style.
Use INDIRECT to return the value referenced by "B2".
| # | AProduct ID | BProduct Name | CPrice | DStock |
|---|---|---|---|---|
| 2 | P001 | Apple | 120 | 80 |
| 3 | P002 | Banana | 98 | 120 |
| 4 | P003 | Notebook | 450 | 35 |
| 5 | P004 | Pen | 300 | 60 |
| 6 | P005 | Grapes | 150 | 45 |
| 7 | P006 | Ruler | 250 | 20 |
| 8 | P007 | Peach | 86 | 55 |
How to Use (Formula)
=INDIRECT("B2", TRUE)Result
Apple
Use INDIRECT when you want to turn text into a cell reference. Enter Reference text, Reference style in that order, then add optional arguments when needed.
Use the "Start Function Practice" button to jump straight into INDIRECT drills.
The main arguments are Reference text, Reference style. Start with the required ones, then add optional arguments if needed.