how to guide index match functions excel - upslide

12
HOW TO USE INDEX AND MATCH FUNCTIONS IN EXCEL GUIDE CREATED BY UPSLIDE

Upload: chandni-trehan

Post on 22-Jan-2018

261 views

Category:

Software


3 download

TRANSCRIPT

Page 1: How to Guide Index Match Functions Excel - UpSlide

HOW TO USE

INDEX AND MATCH

FUNCTIONS IN EXCELGUIDE CREATED BY UPSLIDE

Page 2: How to Guide Index Match Functions Excel - UpSlide

WHAT ARE INDEX AND MATCH

FUNCTIONS IN EXCEL

INDEX and MATCH are two distinct excel functions yet combining them together

in a single formula can give the user a powerful information lookup tool.

Index function simply returns the value of a specific cell in an array of data. The

position of the cell in the array is to be defined by the user, by indicating its

relative row and column coordinates.

WWW.UPSLIDE.NET

Page 3: How to Guide Index Match Functions Excel - UpSlide

The syntax of INDEX is the following:

= index(array, row number,[column number])

WWW.UPSLIDE.NET

Page 4: How to Guide Index Match Functions Excel - UpSlide

This formula would

return ‘Paris’, as it is

located on the 3rd

row and 3rd column

of selected array

=INDEX($B$3:$E$7,3,3)

WWW.UPSLIDE.NET

Page 5: How to Guide Index Match Functions Excel - UpSlide

WHAT IS A MATCH FUNCTION IN EXCEL

Now let us introduce the MATCH function. This function allows the user to look for a

certain value in a given array and returns the corresponding cell relative position. The

syntax is as follow: =match(lookup value, array, match type)

WWW.UPSLIDE.NET

Page 6: How to Guide Index Match Functions Excel - UpSlide

The syntax is as follow:

=match(lookup value, array, match type)

WWW.UPSLIDE.NET

Page 7: How to Guide Index Match Functions Excel - UpSlide

This formula would

get a value of ‘3’

(“jessica” value is

located on the 3rd

row of the selection)

=MATCH(”JESSICA”,$B$3:$B$7,0)

WWW.UPSLIDE.NET

Page 8: How to Guide Index Match Functions Excel - UpSlide

IMPORTANT NOTES

The array must be unidimensional

The match type value should be input as ‘0’ for an exact match.

WWW.UPSLIDE.NET

Page 9: How to Guide Index Match Functions Excel - UpSlide

USING INDEX AND MATCH TOGETHER

The combination of INDEX and MATCH allows the user to obtain a value

corresponding to an input parameter, the parameter and value to return

being in different data table’s columns and same row

WWW.UPSLIDE.NET

Page 10: How to Guide Index Match Functions Excel - UpSlide

The syntax is as follow:

=Index(array containing value to return, match(parameter, array containing parameter,0)).

WWW.UPSLIDE.NET

Page 11: How to Guide Index Match Functions Excel - UpSlide

This formula would get

‘Rome’ as a result.

=INDEX($D$3:$D$7,MATCH(“MARIA”, $B$3:$B$7,0))

WWW.UPSLIDE.NET

Page 12: How to Guide Index Match Functions Excel - UpSlide

We hope this guide helped!

For more information check out the UpSlide Blog

ANY QUESTIONS?

WWW.UPSLIDE.NET