erutherford
Active Member
- Joined
- Dec 19, 2016
- Messages
- 453
I have used this code before and it functions fine. I want to modify it for another use.
original code
I no longer need "model", so I thought I could just removed it, but it's not functioning. It does returns the "x".
Modified code:
I have 3 columns "index",'Div" & "pts", the code should return the name in "index" column, based on "Div" criteria in B61 with the highest score in "pts".
thanks
original code
Code:
{=IFERROR(INDEX(Entry,MATCH(1,(B56=Div)*(B57=Model)*(MAX(IF(Div=B56,IF(Model=B57,Pts)))=Pts),0)),"x")}
I no longer need "model", so I thought I could just removed it, but it's not functioning. It does returns the "x".
Modified code:
Code:
{=IFERROR(INDEX(Pts,MATCH(1,(B61=Div)*(MAX(IF(Div=B61,Pts)))=Pts),0),"x")}
I have 3 columns "index",'Div" & "pts", the code should return the name in "index" column, based on "Div" criteria in B61 with the highest score in "pts".
thanks