FreakyGirl
Member
Hello
I'm having trouble getting index/match to work with a search.
I have a 16 column matrix divided into 4 color sections - blue, green, red, yellow or B G R Y. columns AA-AP
in each of these sections are a name, a p count, a score & a color code. i.e.: freakygirl 4 225 66
names can repeat in each column & can be in any of the 4 sections multiple times.
I need to summarize each player with a total of what they made each color and it has to be done for both singles & pards.
to pull out the single player games from the pard and to make each name unique for adding scores I added a code at the end of each name that I can remove piece by piece giving me what I need.
now I have a new matrix AT-BI. the code at the end of each name is a _ followed by the 1st letter of color played (B,G,R,Y) followed by "S" for singles & then a COUNTIF.
starting with column AJ I start making unique lists & add scores by color groupings removing the code little by little until I get a final unique list with the original names & totals.
I then rank the names & get an alphabetical list that I will use for the summary. everything works up to this point as it should.
now I want to take all the info in that matrix AT-BI & fill in diff parts of the summary. this is where I'M having a problem.
column N is my alphabetical list of names. to the right of each name I need to fill in each cell based on the values in the AT-BI matrix using index/match.
O11 worked great with index/match. Q11 not so much. my formula in Q11 is:
column BP has each name with a total they got for each color.
the logic is that it will take the name in N11 & depending on what column it is add the "_(colorletter)" to it so name can be found in column BP & return the number next to it in BQ.
for example: Q11 looks in column BP for __Tracey___G..... R11 looks for __Tracey___R..... S11 looks for __Tracey___Y
P11 should show 8 (BP60/BQ60) Q11 should show 3(BP24/BQ24) R11 should show 5 (BP35/BQ35) i do not see a _Y for her - will use iserror.
*scratches head* what am I doing wrong?
Thanks in advance,
FreakyGirl
I'm having trouble getting index/match to work with a search.
I have a 16 column matrix divided into 4 color sections - blue, green, red, yellow or B G R Y. columns AA-AP
in each of these sections are a name, a p count, a score & a color code. i.e.: freakygirl 4 225 66
names can repeat in each column & can be in any of the 4 sections multiple times.
I need to summarize each player with a total of what they made each color and it has to be done for both singles & pards.
to pull out the single player games from the pard and to make each name unique for adding scores I added a code at the end of each name that I can remove piece by piece giving me what I need.
now I have a new matrix AT-BI. the code at the end of each name is a _ followed by the 1st letter of color played (B,G,R,Y) followed by "S" for singles & then a COUNTIF.
starting with column AJ I start making unique lists & add scores by color groupings removing the code little by little until I get a final unique list with the original names & totals.
I then rank the names & get an alphabetical list that I will use for the summary. everything works up to this point as it should.
now I want to take all the info in that matrix AT-BI & fill in diff parts of the summary. this is where I'M having a problem.
column N is my alphabetical list of names. to the right of each name I need to fill in each cell based on the values in the AT-BI matrix using index/match.
O11 worked great with index/match. Q11 not so much. my formula in Q11 is:
Code:
=INDEX($BQ11:$BQ11,MATCH(N11&"_G",$BP11:$BP11,0))
column BP has each name with a total they got for each color.
the logic is that it will take the name in N11 & depending on what column it is add the "_(colorletter)" to it so name can be found in column BP & return the number next to it in BQ.
for example: Q11 looks in column BP for __Tracey___G..... R11 looks for __Tracey___R..... S11 looks for __Tracey___Y
P11 should show 8 (BP60/BQ60) Q11 should show 3(BP24/BQ24) R11 should show 5 (BP35/BQ35) i do not see a _Y for her - will use iserror.
*scratches head* what am I doing wrong?
Thanks in advance,
FreakyGirl


