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

Hello,

What forumla should I use to get the digits to the right side of the decimal?
i.e. if the number is 94.203, then I want to get the "203".

Thank you
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,316
Default Digits to the right of decimal point

You can use the following MOD function to return the remainder after dividing
the value by 1. The example assumes that the value to be divided is in cell
A1, change formula based upon your layout:

=MOD(A1,1)
--
Kevin Backmann


"Tigerxxx" wrote:

Hello,

What forumla should I use to get the digits to the right side of the decimal?
i.e. if the number is 94.203, then I want to get the "203".

Thank you

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 78
Default Digits to the right of decimal point

Thank you Kevin!

"Kevin B" wrote:

You can use the following MOD function to return the remainder after dividing
the value by 1. The example assumes that the value to be divided is in cell
A1, change formula based upon your layout:

=MOD(A1,1)
--
Kevin Backmann


"Tigerxxx" wrote:

Hello,

What forumla should I use to get the digits to the right side of the decimal?
i.e. if the number is 94.203, then I want to get the "203".

Thank you

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,316
Default Digits to the right of decimal point

On the other hand, if you always have 3 digits to the right of the decimal
you could use =RIGHT(A1,3).

If there aren't fixed decimals, the following would work:

=RIGHT(A1,LEN(A1)-(FIND(".",A1,1)))
--
Kevin Backmann


"Tigerxxx" wrote:

Hello,

What forumla should I use to get the digits to the right side of the decimal?
i.e. if the number is 94.203, then I want to get the "203".

Thank you

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
extracting digits to the right of a decima point Steve Excel Worksheet Functions 2 August 2nd 06 10:17 PM
extracting digits to the right of a decima point David Billigmeier Excel Worksheet Functions 0 August 2nd 06 10:05 PM
Converting 2-place decimal value to floating point decimal number with leading zero Kermit Piper Excel Discussion (Misc queries) 3 March 18th 06 06:20 PM
FIXED 2 DECIMAL PLACES, MUST ENTER ALL ZEROES AFTER DECIMAL POINT. SUKYKITTY Excel Discussion (Misc queries) 3 July 6th 05 01:50 PM
Displaying only digits after the decimal point Tat Excel Worksheet Functions 4 June 1st 05 06:13 PM


All times are GMT +1. The time now is 12:54 AM.

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

About Us

"It's about Microsoft Excel"