Add Currencies with separate columns for dollars and cents

Gheethanjali

New Member
Joined
Jan 3, 2023
Messages
3
Office Version
  1. 365
Platform
  1. Windows
Hii Everyone....
I need to add currencies in a particular cell, however the dollars and cents are separated into two columns. So I need to add them in relevant column and if it reaches 100 cents it should automatically add 1 dollar to the next column while adding large number of prices....Eg:
14050
13060
27110
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
how about
Book13
AB
1
2160
3150
4180
5190
675
7
8
9755
Sheet1
Cell Formulas
RangeFormula
A9A9=INT(SUM(A2:A8)+SUM(B2:B8)/100)
B9B9=MOD(SUM(B2:B8),100)
 
Upvote 0
how about
Book13
AB
1
2160
3150
4180
5190
675
7
8
9755
Sheet1
Cell Formulas
RangeFormula
A9A9=INT(SUM(A2:A8)+SUM(B2:B8)/100)
B9B9=MOD(SUM(B2:B8),100)
Thank you so much.....Also when we separate dollars and cents I used =MOD(C36,1) formula which displayed the cents in decimal places....are there any ways to display them as you have done as full numbers......
 
Upvote 0
how about
=MOD(C36,1)*100
 
Upvote 0

Forum statistics

Threads
1,221,321
Messages
6,159,224
Members
451,547
Latest member
loop98

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