Need the number after the decimal only

daniels012

Well-known Member
Joined
Jan 13, 2005
Messages
5,219
I need to use the number after the decimal in a formula. How do I get that?

If cell C5 = 1.08345246 or 1654.083452156

I want the result to just be the right of the decimal. And use it in an equation if possible.

Thank You,
Michael
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
The INT function returns 0.&numbers from the right

if you want only the numbers to the right of the . try this

=MID(A3,FIND(".",A3)+1,LEN(A3)-1)
 
Upvote 0
Try...

=C5-TRUNC(C5)

...which will return digits to the right of the decimal point, regardless of whether the number is positive or negative.

Hope this helps!
 
Upvote 0
Thank You to ALL of you!!!!! Wow!

Actually,
I need the decimal also like:
.083452156
So I can use this in another formula.

Michael
 
Upvote 0
Actually,
I need the decimal also like:
.083452156
So I can use this in another formula.

I'm not sure what you mean. Can you elaborate?
 
Upvote 0

Forum statistics

Threads
1,214,583
Messages
6,120,383
Members
448,955
Latest member
BatCoder

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