Reputation: 81
I am forced to use excel for work reasons and I am a novice with that...so forgive me for the stupid question. I have an excel sheet like that:
I would like to have in cell B53 (the green coloured one) the last satus registered in column F for SN0006 --> status "READY". So, steps are:
Until now I was able to print the STATUS of the first SN0006 occurrence "BRING UP" in that way:
=INDEX(F39:F51;MATCH(A53;B39:B51;0))
Thank you in advance for any help!
Upvotes: 1
Views: 1553
Reputation: 81
Finally I also find a way but I didn't understand how it works...
=INDEX(F39:F51;MATCH(2;1/(B39:B51=A53)))
Upvotes: 1
Reputation: 2494
This is an array formula which will work in Excel 2007 and later
=INDEX(F39:F51,MAX((A53=B39:B51)*ROW(B39:B51))-38)
Upvotes: 3