Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 78
Default Getting numbers on the right side of the decimal point

What formula can I use to get the numbers on the right side of the decimal?
i.e. for a number 6.25, the result of the formula should be 25.

Thank you
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 964
Default Getting numbers on the right side of the decimal point

If it is always 2 decimals

=MOD(A1,1)*100

--


Regards,


Peo Sjoblom

"Tigerxxx" wrote in message
...
What formula can I use to get the numbers on the right side of the
decimal?
i.e. for a number 6.25, the result of the formula should be 25.

Thank you



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 964
Default Getting numbers on the right side of the decimal point

If you always want the number of decimals as integers like if you have

0.12345

and you want

12345

=MOD(A1,1)*(1&REPT("0",LEN(MOD(A1,1))-2))

--


Regards,


Peo Sjoblom

"Peo Sjoblom" wrote in message
...
If it is always 2 decimals

=MOD(A1,1)*100

--


Regards,


Peo Sjoblom

"Tigerxxx" wrote in message
...
What formula can I use to get the numbers on the right side of the
decimal?
i.e. for a number 6.25, the result of the formula should be 25.

Thank you





  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,358
Default Getting numbers on the right side of the decimal point

=RIGHT(A1,LEN(A1)-FIND(".",A1))

It is now 'text', but will keep any preceding zeroes (i.e.: 3.057 = 057) and
will avoid the bad rounding that otherwise might occur.
--
John C


"Tigerxxx" wrote:

What formula can I use to get the numbers on the right side of the decimal?
i.e. for a number 6.25, the result of the formula should be 25.

Thank you

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Getting numbers on the right side of the decimal point

If none of the suggestions work for you, you may want to explain what you want
when the original number is:

6.5

Do you want 5, 50, 500, ...



Tigerxxx wrote:

What formula can I use to get the numbers on the right side of the decimal?
i.e. for a number 6.25, the result of the formula should be 25.

Thank you


--

Dave Peterson


  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 78
Default Getting numbers on the right side of the decimal point

Thank you All!
Your solutions helped me!

"Dave Peterson" wrote:

If none of the suggestions work for you, you may want to explain what you want
when the original number is:

6.5

Do you want 5, 50, 500, ...



Tigerxxx wrote:

What formula can I use to get the numbers on the right side of the decimal?
i.e. for a number 6.25, the result of the formula should be 25.

Thank you


--

Dave Peterson

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
aligning by decimal point - negative and positive numbers Melissa Excel Discussion (Misc queries) 4 October 4th 12 08:21 PM
when I type numbers in a cell it changes it to a decimal point Ton[_2_] Excel Discussion (Misc queries) 4 October 1st 08 09:54 PM
ALL NUMBERS I TYPE HAVE DECIMAL POINT PAPA ROSS Excel Discussion (Misc queries) 3 May 7th 08 09:13 PM
Cut &paste clears numbers after the decimal point SLUred Excel Worksheet Functions 0 July 19th 06 04:21 PM
Numbers after decimal point excel to word mail merge Andy P Excel Worksheet Functions 1 March 15th 05 11:48 AM


All times are GMT +1. The time now is 08:36 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"