Return Cents (not sense)

JLC58

New Member
Joined
Oct 31, 2017
Messages
7
Having trouble determining a formula to return ONLY the cents portion of a column of numbers
i.e. 123.50, 234.50 to return $1.00. Possible for both left and right sides of decimal point? J
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Your examples don't make sense to me, how does 234.50 return $1.00??

But to answer your question, to get the left side of the decimal point:
If only positive values:
=INT(A1)
If both positive and negative:
=TRUNC(A1)

To get the part after the decimal point:
=MOD(A1,1)
 
Last edited:
Upvote 0
If you're wanting to add them, you could do it without a helper column


Excel 2010
ABC
1$ 234.50$ 357.00$ 1.00
2$ 123.50
Sheet1
Cell Formulas
RangeFormula
B1{=SUM(TRUNC(A1:A100))}
C1{=SUM(MOD(A1:A100,1))}
Press CTRL+SHIFT+ENTER to enter array formulas.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,284
Members
452,630
Latest member
OdubiYouth

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