+ Reply to Thread
Results 1 to 5 of 5

Copy numbers after decimal into separate column

  1. #1
    Registered User
    Join Date
    03-26-2010
    Location
    Atlanta, Georgia
    MS-Off Ver
    Excel 2003
    Posts
    12

    Copy numbers after decimal into separate column

    Good morning. I just wanted to find out if there is an easy way to copy just the numbers after a decimal point into a separte column.

    For example: Our part number is 015957.084. 84 is the length of the assembly. I already have a column with the whole part number, now I want just the length in another column.

    Thanks for your help.
    Last edited by LaurenSmalley; 06-03-2011 at 09:27 AM.

  2. #2
    Forum Moderator jeffreybrown's Avatar
    Join Date
    02-19-2009
    Location
    Cibolo, TX
    MS-Off Ver
    Office 365
    Posts
    10,316

    Re: Copy numbers after decimal into separate column

    The easiest method would be Text to Columns and use the "." as the delimiter.

    If you want a formula...

    =MID(A1,FIND(".",A1)+1,LEN(A1))+0
    Last edited by jeffreybrown; 06-03-2011 at 09:07 AM.
    HTH
    Regards, Jeff

  3. #3
    Forum Expert
    Join Date
    12-23-2006
    Location
    germany
    MS-Off Ver
    XL2003 / 2007 / 2010
    Posts
    6,326

    Re: Copy numbers after decimal into separate column

    Hi
    try Data - text to columns using the dot as separator, and do not import the part before the dot

  4. #4
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: Copy numbers after decimal into separate column

    Try

    =RIGHT(A1,LEN(A1)-SEARCH(".",A1))+0
    ChemistB
    My 2?

    substitute commas with semi-colons if your region settings requires
    Don't forget to mark threads as "Solved" (Edit First post>Advanced>Change Prefix)
    If I helped, Don't forget to add to my reputation (click on the little star at bottom of this post)

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

  5. #5
    Registered User
    Join Date
    03-27-2013
    Location
    India
    MS-Off Ver
    Excel 2007
    Posts
    1

    Re: Copy numbers after decimal into separate column

    Try the below method

    =A1-ROUNDDOWN(A1,0),this is an example if your original data is in cell A1 and you need to change as per your requirement.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1