MATCH(lookup_value,lookup_array,match_type) returns the relative position of an item in an array : Match « Lookup Reference functions « Microsoft Office Excel 2007 Tutorial

Home
Microsoft Office Excel 2007 Tutorial
1.Introduction
2.Editing
3.Format Style
4.Table
5.Chart
6.Formula
7.Workbook Worksheet
8.Wordart Clip Art Shape Picture
9.PivotTable PivotChart
10.Data Analysis
11.Macro ActiveX Add in
12.Security
13.Collaboration
14.Database functions
15.Date Time functions
16.Engineering functions
17.Information functions
18.Logical functions
19.Lookup Reference functions
20.Math Trigonometry functions
21.Statistical functions
22.Text functions
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Microsoft Office Excel 2007 Tutorial » Lookup Reference functions » Match 
19.11.1.MATCH(lookup_value,lookup_array,match_type) returns the relative position of an item in an array
If match_type is 1, MATCH finds the largest value that is less than or equal to lookup_value. Lookup_array must be ascending.
If match_type is 0, MATCH finds the first value that is exactly equal to lookup_value. Lookup_array can be in any order.
If match_type is -1, MATCH finds the smallest value that is greater than or equal to lookup_value. Lookup_array must be descending.
If match_type is omitted, it is assumed to be 1.

Referenced from Excel Help

19.11.Match
19.11.1.MATCH(lookup_value,lookup_array,match_type) returns the relative position of an item in an array
19.11.2.=MATCH(3,A2:A5,1)=MATCH(3,A2:A5,1)
19.11.3.=MATCH(8,A2:A5,0)=MATCH(8,A2:A5,0)
19.11.4.=MATCH(0,A2:A5,-1)=MATCH(0,A2:A5,-1)
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.