I have a column
Row |Header
------+------
001 | ABC
002 | AC
003 | AD
004 | BCA
005 | DBC
The way my sheet works is user types in criteria *BC*
into one cell.
My VLOOKUP references said cell (with value *BC*
in it).
Expected Result:
ABC
BCA
DBC
Actual Result
I understand that VLOOKUP for criteria 'BC' will only return 'ABC'.
I need to absolute reference the cell which the user types in the criteria, but I wish to return a list of values.
How would I go about approaching this? Array formula doesn't work correctly AFAIK.