Calculating Drop For A Restaurant In Excel

mdsurf

New Member
Joined
Aug 1, 2017
Messages
22
Office Version
  1. 2016
Platform
  1. MacOS
Hello everyone, I have a very specific excel question in regards to calculating the daily cash drop for a restaurant. Every day at my restaurant we start with $300 in the cash drawer across all amounts of change and bills. At the end of the day, the person closing counts the total amount of cash, then takes out $300 for the next day, and deposits the remaining cash into a safe (the cash sales for the day). We always want to put the largest bills in the safe first and have the smaller bills in the drawer to start the next day (plus all the change). I'm trying to figure out a way in excel for the employees to know quickly and easily how many of each bill to put into the safe.

So for example we might end the day we might have $837.54 in the register. This means person closing needs to put $537 (we always round down) into the safe using the biggest bills first. Let's say the bill break down is as follows

<style type="text/css"><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></style>
DenominationNumberValue
$0.0179$0.79
$0.0555$2.75
$0.1080$8.00
$0.2560$15.00
$1.00111$111.00
$5.0030$150.00
$10.0010$100.00
$20.0010$200.00
$50.003$150.00
$100.001$100.00
Total$837.54
Drop Amount$537.00

<colgroup><col style="width: 100px"><col width="100"><col width="100"></colgroup><tbody>
</tbody>

Is there a way in excel to use this information to get the $537 using the biggest bills first? That way employee doesn't have to calculate anything on their own, they can just grab the bills the need to put into safe?

Any help is much appreciated.

Thanks!
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
I don't know what Ross created, but here's a formula option:

ABCDEFGH
1DenominationNumberValueAmt to leaveBills to takeIf availa
ble, leave:
Bills to take
2$0.0179$0.79 $ 300.00
3$0.0555$2.75
4$0.1080$8.00
5$0.2560$15.00
6$1.00111$111.002122
7$5.0030$150.001 525
8$10.0010$100.00855
9$20.0010$200.0010 37
10$50.003$150.00312
11$100.001$100.00101
12Total$837.54
13Drop Amount$537.00 $ 537.00 $ 537.00

<tbody>
</tbody>
Sheet4

Worksheet Formulas
CellFormula
E6=MIN(INT(($C$12-$D$2)-SUMPRODUCT(A7:A$12+0,E7:E$12+0))/A6),B6)
E13=SUMPRODUCT(A6:A11,E6:E11)
H6=MEDIAN(INT((($C$12-$D$2)-SUMPRODUCT(A7:A$12+0,H7:H$12+0))/A6),B6-G6,0)

<tbody>
</tbody>

<tbody>
</tbody>






Put the E6 formula in and drag down to E11. The E13 formula is just there to verify that the counts in E6:E11 add up right. It's a "greedy" method, taking biggest bills first. I'd kind of think that you'd want a few more 10s and 20s though. If you want to leave a minimum number of certain types of bills, you can create a column in G with the number of bills you want left in the till, then use the variation of the formula in H6.
 
Upvote 0
Thank you both for the replies, has been incredibly helpful!!!
 
Upvote 0

Forum statistics

Threads
1,214,938
Messages
6,122,346
Members
449,080
Latest member
Armadillos

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