Calculating prize pool payouts

towners

Board Regular
Joined
Mar 12, 2009
Messages
225
Office Version
  1. 365
Platform
  1. Windows
Hi,

I run a small poker tournament and wanted to automate the calculation of the final cash prizes. I've created a lookup that calculates the prizes based on the number of people and the prize pool. e.g for less than 8 people only 2 people get paid split 60%/40%. Between 12 & 20 4 places are paid and split as in the image below, and so on.

This is all fine however, no-one carries small change anymore and it's all folding notes... So I want to round up or down the prizes to the nearest £10 so it's not as straightforward as just taking a percentage, the percentage only becomes a guide.

Can anyone help with a formula that can take the lowest denomination of £ being £10?

1702901795702.png

Many thanks,

PT
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Do you have the full breakdown of how the prize money is split and does everyone get a prize or only the top 10 players?

E.g
1st
- If under 5 players then prize is 60%.
- Over 5 players then prize is 50%.

2nd
- If under 5 players then prize is 40%.
- Over 5 players then prize is 30%.

3rd
- If under 5 players then prize is 20%.
- Over 5 players then prize is 10%.

4th and 5th
- If under 5 players then prize is 10%.
- Over 5 players then prize is 5%.
 
Upvote 0
I think the ROUND function handles what you want. Does this help?

Book1
CD
3Total Pay$1,110.00
4
540%$440.00
627%$300.00
719%$210.00
814%$160.00
Sheet1
Cell Formulas
RangeFormula
D5:D8D5=ROUND($D$3*C5,-1)
 
Upvote 0
Do you have the full breakdown of how the prize money is split and does everyone get a prize or only the top 10 players?

E.g
1st
- If under 5 players then prize is 60%.
- Over 5 players then prize is 50%.

2nd
- If under 5 players then prize is 40%.
- Over 5 players then prize is 30%.

3rd
- If under 5 players then prize is 20%.
- Over 5 players then prize is 10%.

4th and 5th
- If under 5 players then prize is 10%.
- Over 5 players then prize is 5%.
Hi, thanks for replying.

Here's the lookup table, I use a HLOOKUP to find the prize %

1703153781939.png
 
Upvote 0
I think the ROUND function handles what you want. Does this help?

Book1
CD
3Total Pay$1,110.00
4
540%$440.00
627%$300.00
719%$210.00
814%$160.00
Sheet1
Cell Formulas
RangeFormula
D5:D8D5=ROUND($D$3*C5,-1)
Hi, thanks for replying.

I also used the round function but the problem I have is altering the percentages for 2nd, 3rd & 4th to suit once the first prize value has been rounded, then 3rd & 4th once the second prize has been rounded and so on.

I'm thinking the simplest way might be to round all based on percentages and then calculate the difference between the total of the rounded prize values from the total pool and apply this difference to the first placed prize money
 
Upvote 0
I think
Excel Formula:
=Round((Percentage*Total Funds),-1)
would be the easiest, the below picture is a comparison using the percentages from column J in your screenshot. The ROUND function evens out the amount.

1703224863121.png
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,954
Members
449,095
Latest member
nmaske

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