New Microsoft Excel Worksheet
New Microsoft Excel Worksheet
11500
INDEX is a lookup function that can do a two-way lookup.
array argument is the two dementioanl table (both a row and a column - that is the two-way part of it)
row_num argument tells index which row to look at
column_num argument tells index which colum to look at
The intersection of the row and column is the value that is returned to the cell or formula
Discount Table
PartID/Qty 1 5 25 100
Part1 13.00% 15.00% 17.00% 19.00%
Part2 14.00% 16.00% 18.00% 20.00%
Part3 15.00% 17.00% 19.00% 21.00%
Part4 16.00% 18.00% 20.00% 22.00%
Part5 17.00% 19.00% 21.00% 23.00%
Part6 18.00% 20.00% 22.00% 24.00%
0.21 #VALUE!
okup.
at is the two-way part of it)
at
ok at
to the cell or formula
MATCH function is a lookup function that returns the relative position of an item in a list
lookup_value is the value you tell the match function to lookup
lookup_array is the list that you look an item up in
[match_type] tells the MATCH what sort of lookup to do:
1 or empty = aproximate match; table sorted ascending; first bigger value bumped into then jump back one position, if value
first item returns #N/A, if bigger than last it returns last value
2 = extact match, if duplicates, it finds first one only, can't find it it shows #N/A
-1 = aproximate match; table sorted descending; first smaller value bumped into then jump back one position, if value is bigg
returns #N/A, if smaller than last it returns last value
MATCH can do
vertical or
Only 1 in list Duplicate Not in List horizontal
Lookup Jo Tom Sue Jo
Relative Position
MATCH with 1 or Empty & Sorted Ascending (Approximate Match - 1st Biggest & Jump Back)
MATCH can do
vertical or
Fits in Gap Finds Exact Value Smaller Than First Bigger than Last horizontal
Lookup ₹ 150.00 -₹ 400.00 -₹ 800.00 ₹ 20,000.00 ₹ 50.00
Relative Position 2 1 #N/A 7 1
MATCH with -1 & Sorted Descending (Approximate Match - 1st Smallest & Jump Back)
MATCH can do
Smaller than vertical or
Fits in Gap Finds Exact Value Bigger Than First Last horizontal
Lookup ₹ 1,500.00 ₹ 2,500.00 ₹ 20,000.00 -₹ 10.00 ₹ 9,000.00
Relative Position ₹ 3.00 ₹ 3.00 #N/A ₹ 7.00 ₹ 1.00
Use INDEX, MAX & MATCH to find student with max score
Name Score
Student 1 53
Student 2 18
Student 3 99
Student 4 45
Student 5 19
Student 6 27
Student 7 85
Student 8 0