Altering data depending on conditional format

boakley

New Member
Joined
Feb 8, 2018
Messages
36
Hello everyone,

I have a table with 3 different cells that have data in them (F4, H4 and J4). These cells are set as scores. The next cell, L4 has a SUM formula to get the total score of all 3 score cells (G4, I4 and K4).

The scores are for number of push ups, number of sit ups and run time. It is possible to get over 100 in one or all of the events, since there is whats called an “extended scale” but you must have a 100 as a score for all 3 events before any one of then can go over 100.

Example:
If I maxed my push ups and got 100, maxed my situps and got 100, and went OVER max for my run, then that would allow me to get over 100 on my run score since the other events were 100 as well, recieving a total score of 300+.

Now lets say I DID NOT max my push ups and only got a score of 90. But my situps were maxed for 100 points and I went OVER max on my run, I would only recieve the standard 100 points for my run and not over that because my pushups were not worth 100 points.

I would like to have cell L4 display the total score from the three events (event scores based off of different sheets that I created). If one event did not recieve a 100 then None of the other score cells will allow a score for over 100.

Example of table WITH extended scale applied
FGHIJKL
Pushup RepsPushup ScoreSitup RepsSitup ScoreRun TimeRun ScoreTotal
477100
821001310102302
578101821001316100301

<tbody>
</tbody>
*If all scores are 100 or over, extended scale applies and should be totaled as such in Cell L4,L5 (According to the Excercises score sheet)

Example of table WITHOUT extended scale applied
FGHIJKL
Pushup RepsPushup ScoreSitup RepsSitup ScoreRun TimeRun ScoreTotal
47699831001310100299
577100821001316100300

<tbody>
</tbody>
*Even though according to the excercises score sheet doing 83 situps should have gotten him a 101 and the run time should have gotten him a 102, both of those scores revert back to 100 because he didnt get the max score for pushups, REGARDLESS of what the scoresheet says. But the reps stay the same.

Example of Push Up score sheet
Age303132
Reps
78102101101
77101100100
761009999

<tbody>
</tbody>

Example of Situp Score Sheet
Age303132
Reps
83102101101
82101100100
811009999

<tbody>
</tbody>

Example of Run Time Score Sheet
Age303132
Run Time
1310104102102
1316102100100
13221009898

<tbody>
</tbody>


I already have the formulas set up in cells G, I and K to get the proper score using INDEX MATCH.

If anyone could help here, it would be fabulous. Thank you in advance.
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Try:
Code:
=if(and([pushupscore]>100,[situpscore]>100,[runscore]>100),sum([pushupscore],[situpscore],[runscore]),if(and([pushupscore]>100,[situpscore]<100,[runscore]<100),sum(100,[situpscore],[runscore]),if(and([pushupscore]<100,[situpscore]>100,[runscore]<100),sum([pushupscore],100,[runscore],if(and([pushupscore]<100,[situpscore]<100,runscore>100),sum([pushupscore],[situpscore],100),if(and([pushupscore]>100,[situpscore]>100,[runscore]<100),sum(100,100,[runscore],if(and([pushupscore]>100,[situpscore]<100,[runscore]>100),sum([100,[situpscore],100),sum([pushupscore],100,100)))))))))

where [pushupscore], [runscore] and [situpscore] are the cells containing the relevant scores.

Probably an easier way to do it but this should work.
 
Last edited:
Upvote 0
@excelnoob123456,
So I entered that formula you sent into the total score cell and all it returned was "FALSE" after I input all of the repetition data into the other cells. I double and triple checked to see if maybe I had entered something wrong but it was the same. Any idea's?
 
Upvote 0
So the idea of the formula is that you need to have an option for every possibility that could happen, whether the score is 100 or not for each exercise, you have three exercises with two options for each (3*2 = 6) therefore 6 possible outcomes, I just checked the formula and I have included all of the outcomes so I don't think the problem is with the formula.

Check whether the data you are looking at is formatted as a number or if the cells which you are refrencing in the formula which contain the scores have a formula in themselves then put =value() around the formula, which will make excel treat it as a number - I have had this issue a lot of times myself.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,923
Messages
6,122,289
Members
449,077
Latest member
Rkmenon

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top