money calculator

Victtor

Board Regular
Joined
Jan 4, 2007
Messages
170
Office Version
  1. 365
Platform
  1. Windows
I need a formula that will tell me how much money a certain dollar amount is. For example, if I had $6.42, I need the calculator to tell me I need the following
Fives = 1
Ones = 1
quarters = 1
dimes = 1
nickels = 1
pennies = 2

I must pay my employees a percentage of the tips every two weeks based on the number of hours they worked. I want to put the exact amount I need overall in one bag and hand them their share.

So...how do I set this up? I have 22 employees and the payout is different for each one. So I guess at the bottom of the sheet there will be a total of all the tens, fives, ones, quarters, dimes, nickels, and pennies I need to do the payout

Thanks in advance
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Put the denominations, in dollars in row 1, e.g. in B1:G1

5, 1, 0.25, 0.1, 0.05, 0.01

Then put the amount ($6.24 in your example) in A2

This formula in B2

=INT(A2/B$1)

and this formula in C2 copied across to g2

=INT(ROUND(($A2-SUMPRODUCT($B$1:B$1,$B2:B2))/C$1,2))

This will give you the numbers for each note/coin

Copy B2:G2 formulas down for additional amounts in A3, A4 etc

You can use a SUM formula at the bottom (or even at the top) to give the total amount of each note/coin needed
 
Upvote 0

Forum statistics

Threads
1,215,039
Messages
6,122,799
Members
449,095
Latest member
m_smith_solihull

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