Excel has a few functions that try to find an item in a list.
The MATCH function is one of them.
It takes the form
It has two options for the 3rd argument
....Exact Match: 0
or
....Approximate Match: 1 (or omitted)
Exact Match does what it says...if no exact match...it returns an error.
Otherwise, it returns the sequential position of the matched item in the list.
Approximate Match, the one we're using here, assumes the items are
listed in order and returns the position of the largest item that is
less than or equal to the search item.
However....if the searched item is larger than all other items in the list
it returns the position of the LAST ITEM of that type (numeric vs text)
...even if the list is not sorted.
So...regarding this formula:
The MATCH function is trying to find 10 to the 99th power
(an impossibly large number for Excel to even contain).
Not finding it, the function returns the position of the
last numeric value in the list.
The INDEX section of the above formula returns the cell in the position
just before the last numeric cell in the list.
I hope that helps.
Post back with more questions.
Bookmarks