Link to home
Start Free TrialLog in
Avatar of Karen Schaefer
Karen SchaeferFlag for United States of America

asked on

Index Match not working on second pass

I am using index match functions and it works the 1st time, however, when I change the selection it returns the incorrect value.  Please see attached sample.

What am I missing?

=INDEX('Cost Per Min. Management'!$D:$D,(MATCH($G$3,'Cost Per Min. Management'!$A:$A)))

Open in new window


See Cell G3 & G4.
IndexMatchSample.xlsx
Avatar of Joe Howard
Joe Howard
Flag of United States of America image

Use VLOOKUP:
=VLOOKUP(G3,A2:D27,4,FALSE)

Open in new window

SOLUTION
Avatar of Joe Howard
Joe Howard
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
You must set it to be exact match.
=INDEX($D:$D,MATCH($G$3,$A:$A,0),1)
Avatar of Karen Schaefer

ASKER

=INDEX('Cost Per Min. Management'!$D:$D,(MATCH(E$35,'Cost Per Min. Management'!$A:$A,0),1))*INT(1440*$F37)

Help when I add the second part of the formula need help with syntax.
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks for the help
Thanks for the help