(E-Mail Removed) wrote...
....
>col A: list of months (12): cell A1:jan/06, A2: feb/06, A3: mar/06, A4:
>apr/06, A5:...... A12: dec/06
>col B: list of sales that correspond to the month (only 4): B1:100,
>B2:112, B3:105, B4:112
>
>I want a formula that will tell me the latest month that the sales is
>inputed (in this case B4) = apr/06
....
>but where i'm stuck at is using index/match, (i put this formula in E1)
>
>=INDEX($A$1:$A$12,MATCH(D1,$B$1:$B$12,0))
So what's D1?
FWIW, given your setup above (something in each cell in A1:A12, numbers
in B1:B4, nothing in B5:B12), both the following formulas return the
value in cell A4.
=LOOKUP(1E+300,B1:B12,A1:A12)
=INDEX(A1:A12,MATCH(1E+300,B1:B12))