FreakyGirl
Member
Hello
I'm having a problems with my worksheet.
A player can play up to 5 times but no less than 2 times in a month.
Out of those 5 times i need to pull the highest 2 scores of the FIRST 3 played.
if a player missed a game, then its a blank space (not a 0 because 0 can be a score) under that day.
example:
a players scores for the 5 times may be
3 8 14 3 1 in which case the highest 2 of the first 3 played are 8 & 14. simple enough.
but when a day is missed such as
6 miss 10 13 14 i cant figure out how to get it to show 10 & 13 as the highest two of first 3.
in the attached worksheet
column AU-AY shows the scores for the month extracted from the table. this cant be edited.
starting with BA-BZ are my attempts at helper columns for making it work.
In column BG i have successfully been able the show the first number of the 3 even if there's a blank space in the adjacent score.
column BH i tried to pull the second number but if the first was a blank, that doesn't work as it should.
i get results but not from the right column.
example from row 23. scores are blank 10 10 8 blank 7. I need to get 10 10 8
results give me 10 10 7 using the formula
If i change the AX23 with AY23 in the formula I get the 8 needed but when I copy formula to the rest of the cells in that column it changes others to not be right.
column BF shows the results of my attempts in extracting those scores.
column BE shows the 3 scores i need for each row manually put in.
column BD shows if BE & BF match so i can see where its wrong.
there has to be an easier way than what im doing. im beyond frustrated.
thanks in advance,
FreakyGirl
I'm having a problems with my worksheet.
A player can play up to 5 times but no less than 2 times in a month.
Out of those 5 times i need to pull the highest 2 scores of the FIRST 3 played.
if a player missed a game, then its a blank space (not a 0 because 0 can be a score) under that day.
example:
a players scores for the 5 times may be
3 8 14 3 1 in which case the highest 2 of the first 3 played are 8 & 14. simple enough.
but when a day is missed such as
6 miss 10 13 14 i cant figure out how to get it to show 10 & 13 as the highest two of first 3.
in the attached worksheet
column AU-AY shows the scores for the month extracted from the table. this cant be edited.
starting with BA-BZ are my attempts at helper columns for making it work.
In column BG i have successfully been able the show the first number of the 3 even if there's a blank space in the adjacent score.
column BH i tried to pull the second number but if the first was a blank, that doesn't work as it should.
i get results but not from the right column.
example from row 23. scores are blank 10 10 8 blank 7. I need to get 10 10 8
results give me 10 10 7 using the formula
Code:
=IF(BI23<>"",BI23,IF(AX23="",AX23,AY23))
If i change the AX23 with AY23 in the formula I get the 8 needed but when I copy formula to the rest of the cells in that column it changes others to not be right.
column BF shows the results of my attempts in extracting those scores.
column BE shows the 3 scores i need for each row manually put in.
column BD shows if BE & BF match so i can see where its wrong.
there has to be an easier way than what im doing. im beyond frustrated.
thanks in advance,
FreakyGirl