Minimum Point loss

Travisallen2007

New Member
Joined
Jan 21, 2018
Messages
30
Office Version
  1. 365
Yall have been amazing at the help!! Thank you so much! I was wondering if you could help with one final question:

I am removing points from a scorecard but only want it to remove a maximum of 10 points (Even though they can potentially lose more)

EX: If they have an A they lose 5 if they have a T they lose 2 up to a 10 point max.

I have set up a Sumproduct formula to count the amount of times they have an A or an T but dont know how to stop it if it goes over 10.

Thanks again for all the help!
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
The current count formula i have is:

=SUMPRODUCT((LEN(B3:AF3)-LEN(SUBSTITUTE(B3:AF3,$AH$2,"")))/LEN($AH$2))
 
Upvote 0
Hi,

Referring to the sample in your other thread, something like this:


Book1
ADGHIJKLMNOPQ
2PersonTotal ScoresDay 1Day 2Day 3Day 4Day 5Day 6Day 7Final Score
3A77AAT67
4B161AT154
5C84AAA74
6D154T152
7E9191
8F147TT143
9G98TA91
10H140TT136
11I105A100
12J133133
13K112TTAAA102
14L126A121
15M119T117
Sheet17
Cell Formulas
RangeFormula
Q3=G3-MIN(SUM(COUNTIF(I3:O3,"A")*5,COUNTIF(I3:O3,"T")*2),10)
 
Upvote 0

Forum statistics

Threads
1,215,073
Messages
6,122,975
Members
449,095
Latest member
Mr Hughes

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