HLOOKUP question

C

Chuck M

Hi,

I need to know what column (or the relative position in the list) the result
of an HLOOKUP came from. Is this possible?
 
T

T. Valko

Try this:

=MATCH(lookup_value,A1:J1,0)

Where A1:J1 = first row of your lookup table.
 
P

Pete_UK

The MATCH function returns the relative position of the sought item.

Hope this helps.

Pete
 
Top