Right now I wanted to collect all those non blank cell on B1:B7. I'm able to do that with
={IFERROR(INDEX($B$1:$B$7,SMALL(IF($B$1:$B$7<>"",ROW($$B$1:$B$7)),ROW(1:1))),"")}
The result is in column D.
However I need to try to get the address or row of the return reference. Which is shown in E and F.
Because my final goal is to get the car plate number. Which is shown in column G.
If the repair Status value would be unique, I could have used index
and match
to get the cell location. But... The value is not unique.
Any idea how to do so?