Running into some trouble performing an Index/Match where the offset rows could be spaced 1 row apart, 2 rows apart, or 3 rows apart. Below is an example of the setup:
Sheet1:
|   A   |   B   |   C   |   D   |   E   |   F   |
-------------------------------------------------
|       |       |       |       | Apple |       |
-------------------------------------------------
| Ser1  |       |       |       |       |       |
-------------------------------------------------
|       |       |       |       | Orange|       |
-------------------------------------------------
| Ser2  |       | Ser3  |       | Ser4  |       |
-------------------------------------------------
| Ser5  |       |       |       |       |       |
Sheet2:
|   A   |
---------
| Ser1  |
---------
| Ser2  |
---------
| Ser3  |
---------
| Ser4  |
---------
| Ser5  |
I have a list of the serial numbers (ser1, ser2, etc) in another sheet, and I need to match values in Column E where the correct value is above the serial number by 1, 2, or 3 rows. As you can see, serial numbers could be in column A, C, or E.
Ex: Ser1 should match on Apple. Ser2, Ser3, ser4, and Ser5 should match on Orange.
I can't seem to figure out the correct Index/Match that work completely since the offset at the end of the formula is either + or - by a static row number.