I have a list of six scores. Let's call them:
Score 1
Score 2
Score 3
Score 4
Score 5
Score 6
Each score can be given a value of 0 to 6. What I want to do is have another number (named MRC) multiply by a certain amount depending on the six scores.
For instance: If all the scores equal six, MRC is multiplied by 1.5
If five of the numbers equal six and the sixth doesn't, MRC is multiplied by 1.25
If four of the numbers equal six and the other two don't, MRC is multiplied by .75
Where it gets interesting is if all six numbers are five or greater, then MRC is multiplied by 1.25 and if five are five or greater, MRC is multiplied by .75
Thus, someone can and will have two different multipliers (or more). What I want to take is the largest of all the number and use it as the multiplier.
Score 1
Score 2
Score 3
Score 4
Score 5
Score 6
Each score can be given a value of 0 to 6. What I want to do is have another number (named MRC) multiply by a certain amount depending on the six scores.
For instance: If all the scores equal six, MRC is multiplied by 1.5
If five of the numbers equal six and the sixth doesn't, MRC is multiplied by 1.25
If four of the numbers equal six and the other two don't, MRC is multiplied by .75
Where it gets interesting is if all six numbers are five or greater, then MRC is multiplied by 1.25 and if five are five or greater, MRC is multiplied by .75
Thus, someone can and will have two different multipliers (or more). What I want to take is the largest of all the number and use it as the multiplier.