Excel Tutorial

Excel Tutorial Shortcut Keys in Excel Formatting in Excel Notes in Excel Formats in Excel Cells and Ranges in Excel Excel Function and Formulas Conditional Formatting in Excel Data Validation in Excel Charts in Excel Excel Ribbon Toolbar Basics of Excel Spell Check in Excel Data Analysis in Excel AutoFill in Excel Goal Seek in Excel Solver in Excel Pivots Table in Excel Go-To Special function in Excel Blank cells in Excel Count Cells with Text in Excel Date and Time in Excel-VBA Dependent Drop-down List in Excel Operators in Excel Dependent Combo box in Excel VBA Error Bar in Microsoft Excel Excel Axes Excel File using Password Excel Unique Values Frequency Distribution in Excel Gauge Chart in Excel Histogram in Excel Sum Every Nth Row in Microsoft Excel SumIF Formula in Microsoft Excel Multiplication in Excel Unique Values in Excel Trendline in Excel Excel Themes Copying formula in Excel Check Marks in Excel Calculating the Last Day of the Month in Excel Calculating Age in Excel Insert Row in Excel

Functions

Excel MAX() Function Excel INT() Function Excel MOD() Function Excel ROUND() Function Excel ROUNDUP() Function Excel AVERAGE() Function Excel COUNT() Function Excel COUNTA() Function Excel COUNTBLANK() Function Excel MIN() Function Excel EDATE() Function Excel EOMONTH() Function Excel HOUR() Function Excel MINUTE() Function Excel SECOND() Function Excel TIME() Function Excel WORKDAY() Function Excel WORKDAY.INTL() Function Excel DAYS() Function Excel WEEKNUM() Function Excel WEEKDAY() Function Excel SMALL() Function Excel LARGE() Function Excel LEFT() Function Excel RIGHT() Function Excel MID() Function Excel FIND() Function Excel SEARCH() Function Excel EXACT() Function Excel SUBSTITUTE() Function Excel TEXT() Function Excel VALUE() Function Excel AND() Function Excel OR() Function Excel IFERROR() Function Excel IF() Function Excel Nested IF’s Function Excel IFNA() Function Excel COUNTIFS() Function Excel VLOOKUP() Function Excel HLOOKUP() Function Excel INDEX() Function Excel MATCH() Function Excel OFFSET () Function Averageif Function in Excel

How To

How to import Microsoft Access data into the Microsoft Excel How to use TODAY function in Excel How to Alphabetize in Excel How to remove duplicate values from excel How to lock cells in Excel How to create drop down in excel How to Delete Row in Microsoft Excel How to Highlight Duplicates Words in the Microsoft Excel How to print titles in Excel How to make use of the Wildcard in Excel How to Make Use of the F-Test in Excel How to make use of the Excel Autofit in Excel How to generate random numbers in Excel How to apply Advanced Filter in Excel How to use Index and Match in Excel

Misc

Absolute Value in Excel Adding Column in Excel Converting Units in Excel Count Characters in Excel Custom Sort Order in Excel Decimals in Excel Division in Excel Locate Maximum Values in Excel Nearest Multiple in Excel Paste Options in Excel Quarter Dates in Excel Row Difference in Excel Separate Strings in Excel Reverse List in Excel Array Formula in Excel What if Analysis Data Table in Excel Excel Shortcut Keys What is a spreadsheet in Excel?

Excel INDEX () Function

Excel INDEX () Function

The INDEX() function in excel returns a value from a list of tables based on the intersection of a row and a column position. This function is used with the MATCH function, where the MATCH locates and feeds a position to INDEX.

Syntax

INDEX (array, row_num, [col_num], [area_num])

Parameter

Array (required)- This parameter represents the range of cells that we need to find the value.

Row_num (required)- This parameter refers to the row position in the reference or array.

Col_num (optional)- This parameter represents the column position in the reference or array. The default value is 1.

Area_num(optional)- This parameter refers to the range in reference that should be used.

Category

Lookup & Reference

Return

This function returns a value from a list of tables based on the intersection of a row and a column position.

Example 1

Objective: Pick value at the intersection of 3rd row and fourth column in a range B71:E82

ID Name Email ID Salary
650 Gautam [email protected] $936
764 Pooja Rani [email protected] $1,303
651 Aashna Malhotra [email protected] $1,378
774 Lakshman Maradapa [email protected] $1,500
873 Ekta Gupta [email protected] $1,218
624 Nikit Mahiwal [email protected] $806
825 Meenakshi Jaiswal [email protected] $1,007
818 Pragati Patel [email protected] $1,206
694 Rohit Rawat [email protected] $1,479
Result Formula Text
1303 =INDEX(B71:E82,3,4)

Example 2

Objective: Pick value at the intersection of 3rd row and fourth column in a range B71:E82

Emp ID Purchased Date Product Category Product Unit Amount
E001 21-Mar-18 Camera ASUS F556UA 2 $548
E002 22-Mar-19 Laptop Canon ES 2 $500
E003 13-Aug-18 Watch Fitbit Blaze Smart Watch 1 $73
E004 24-Mar-13 Laptop Samsung Gear S2 4 $950
E005 2-Jun-11 Watch Fitbit Blaze Smart Watch 3 $198
E006 2-Jan-12 Camera Pebble Smart Watch 4 $306
E007 27-Mar-18 Watch Apple Watch Sport 2 $308
E008 28-Mar-15 Laptop ASUS F556UA 3 $529
E009 29-Mar-18 Watch HP 15-ay011nr 2 $499
E010 20-Sep-18 Laptop ASUS ROG 1 $1,099
Result Formula Text
Canon ES =INDEX(B71:E82,3,4)