सीधे मुख्य सामग्री पर जाएं

INDIRECT Function

MS Excel: How to use the INDIRECT Function (WS)

This Excel tutorial explains how to use the Excel INDIRECT function with syntax and examples.

Description

The Microsoft Excel INDIRECT function returns the reference to a cell based on its string representation.
The INDIRECT function is a built-in function in Excel that is categorized as a Lookup/Reference Function. It can be used as a worksheet function (WS) in Excel. As a worksheet function, the INDIRECT function can be entered as part of a formula in a cell of a worksheet.

Syntax

The syntax for the INDIRECT function in Microsoft Excel is:
INDIRECT( string_reference, [ref_style] )

Parameters or Arguments

string_reference
A textual representation of a cell reference.
ref_style
Optional. It is either a TRUE or FALSE value. TRUE indicates that string_reference will be interpreted as an A1-style reference. FALSE indicates that string_referencewill be interpreted as an R1C1-style reference. If this parameter is omitted, it will interpret string_reference as an A1-style.

Returns

The INDIRECT function returns the reference to a cell and thus displays the referenced cell's value.

Applies To

  • Excel 2016, Excel 2013, Excel 2011 for Mac, Excel 2010, Excel 2007, Excel 2003, Excel XP, Excel 2000

Type of Function

  • Worksheet function (WS)

Example (as Worksheet Function)

Let's look at some Excel INDIRECT function examples and explore how to use the INDIRECT function as a worksheet function in Microsoft Excel:
Microsoft Excel
Based on the Excel spreadsheet above, the following INDIRECT examples would return:
=INDIRECT("$B$4")
Result: 3

=INDIRECT("A5")
Result: 10570

=INDIRECT("A5", TRUE)
Result: 10570

=INDIRECT("R2C3", FALSE)
Result: $3.50

टिप्पणियाँ

इस ब्लॉग से लोकप्रिय पोस्ट

VLOOKUP Function

MS Excel:  How to use the VLOOKUP Function (WS) This Excel tutorial explains how to use the  VLOOKUP function  with syntax and examples. Description The VLOOKUP function performs a vertical lookup by searching for a value in the first column of a  table  and returning the value in the same row in the  index_number position. The VLOOKUP function is a built-in function in Excel that is categorized as a  Lookup/Reference Function . It can be used as a worksheet function (WS) in Excel. As a worksheet function, the VLOOKUP function can be entered as part of a formula in a cell of a worksheet. The VLOOKUP function is actually quite easy to use once you understand how it works! If you want to follow along with this tutorial, download the example spreadsheet. Download Example Syntax The syntax for the VLOOKUP function in Microsoft Excel is: VLOOKUP( value, table, index_number, [approximate_match] ) Parameters or Arguments value T...

ROW Function

MS Excel:  How to use the ROW Function (WS) This Excel tutorial explains how to use the Excel  ROW function  with syntax and examples. Description The Microsoft Excel ROW function returns the row number of a cell reference. The ROW function is a built-in function in Excel that is categorized as a  Lookup/Reference Function . It can be used as a worksheet function (WS) in Excel. As a worksheet function, the ROW function can be entered as part of a formula in a cell of a worksheet. Syntax The syntax for the ROW function in Microsoft Excel is: ROW( [reference] ) Parameters or Arguments reference Optional. It is a reference to a cell or range of cells. Returns The ROW function returns a numeric value. Note If the reference parameter is omitted, it assumes that the  reference  is the cell address in which the ROW function has been entered in. For example, the ROW function used in the picture above returns 1 because the RO...