Questions tagged [excel-indirect]

Returns the reference specified by a text string. References are immediately evaluated to display their contents.

Syntax

INDIRECT(ref_text, a1)

Ref_text

A reference to a cell that contains an A1-style reference, an R1C1-style reference, a name defined as a reference, or a reference to a cell as a text string.

  • If ref_text is not a valid cell reference, INDIRECT returns the #REF! error value.
  • If ref_text refers to another workbook (an external reference), the other workbook must be open. If the source workbook is not open, INDIRECT returns the #REF! error value.
  • If ref_text refers to a cell range outside the row limit of 1,048,576 or the column limit of 16,384 (XFD), INDIRECT returns a #REF! error.

Note:

This behavior is different from Excel versions earlier than Microsoft Office Excel 2007, which ignore the exceeded limit and return a value.

A1

A logical value that specifies what type of reference is contained in the cell ref_text.

  • If a1 is TRUE or omitted, ref_text is interpreted as an A1-style reference.
  • If a1 is FALSE, ref_text is interpreted as an R1C1-style reference.

Reference links


Tag wiki credits to Microsoft Office documentation of function.

290 questions
-1
votes
3 answers

Count total values across multiple sheets

I have the following data in my Excel file: Sheet 1 Product Quantity Alpha 100 Bravo 200 Charlie 300 Sheet 2 Product Quantity Bravo 100 Delta 200 Sheet 3 Product Quantity Charlie 100 Delta …
abramlimpin
  • 5,027
  • 11
  • 58
  • 97
-1
votes
2 answers

Need formula operating against a dynamic range copied across a series of cells

I'm creating a grid of correlation values, like a distance grid. I have a series of cells that each contain a formula whose ranges are easy to describe if you know the offset from the first cell, and I'm having trouble figuring out how to specify…
neontapir
  • 4,698
  • 3
  • 37
  • 52
-2
votes
1 answer

I need to dynamically reference from one excel workbook to another

I have an excel workbook titled "Invoices" that contains invoicing templates for approximately 35 employees. Cosmetically, all of the sheets are the same, except for employer, pay rate, name etc. Each employee has a different sheet within this…
-2
votes
1 answer

How to use indirect formula to show value AND formatting?

I have attached the example file just in case my explanation is not clear. Excel Case 01.xlsx So everyday I need to e-mail to my customers their daily delivery order based on their request and contract. Usually, they only order what they requested…
Carissa
  • 7
  • 3
-3
votes
1 answer

How automatically to update the format of a cell depending on the format of the reference cell

I have a VLOOKUP formula and the result can be either a number or a percentage (this can even vary for the same cell depending on the value given by a drop-down list). How can the format of the cell be automatically updated depending on the format…
1 2 3
19
20