frustrated over something probably simple

worthingto

New Member
Joined
Sep 17, 2011
Messages
2
i am helping my teammate (sec/tres of league) by taking care of the scores for our bowling league. i have almost got the spreadsheet to do everything i want it to do except for one thing. the league is head to head and the handicap is setup with the difference of the two ave's with a max of 50. i'm trying to find a formula to do this if (J4-A4)>50 than value is 50. if (J4-A4)<0 (i.e -4) than value is 0. i almost have it setup that all i have to do is tye in the individual scores. any and all help is greatly appreciated
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Welcome to the board.

=MIN(50, MAX(0, J4-A4))

or

=MEDIAN(0, J4-A4, 50)
 
Upvote 0
thanks, see something so simple... new dilemma just surfaced.
i used =IF((D4+C4)>(L4+M4),"TRUE", IF((D4+C4)=(L4+M4), "HALF","FALSE"))
to calculate tie's
and used
=COUNTIF(D16:D20,"TRUE")
to figure out points won and it doesn't count anything. do i have to adjust the countif formula to compensate for the if formula?
 
Upvote 0
It might be easier to use,

=CHOOSE(SIGN(D4+C4-L4-M4) + 2, "Lose", "Draw", "Win")

... and

=COUNTIF(that range, "Win")
 
Upvote 0

Forum statistics

Threads
1,224,541
Messages
6,179,418
Members
452,912
Latest member
alicemil

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