+ Reply to Thread
Results 1 to 5 of 5

Split Decimal Values

  1. #1
    Registered User
    Join Date
    10-14-2013
    Location
    india
    MS-Off Ver
    Excel 2007
    Posts
    1

    Post Split Decimal Values

    I have 188.432 values in kilogram in a single cell.. i want to split it into three different cells showing 1 quintal 88 kilo 432 grams

    a.JPG

  2. #2
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    15,606

    Re: Split Decimal Values

    =INT(A1/100) quintal
    =INT(A1-INT(A1/100)) kilo
    =MOD(A1, 1) grams

  3. #3
    Forum Guru benishiryo's Avatar
    Join Date
    03-25-2011
    Location
    Singapore
    MS-Off Ver
    Excel 2013
    Posts
    5,147

    Re: Split Decimal Values

    welcome to the forum, gurinderbti. assuming 188.432 in E2, try this in A2:C2
    =INT(E2/100)
    =INT(MOD(E2,100))
    =MOD(E2,1)*1000

    Thanks, if you have clicked on the * and added our rep.

    If you're satisfied with the answer, click Thread Tools above your first post, select "Mark your thread as Solved".

    "Contentment is not the fulfillment of what you want, but the realization of what you already have."


    Tips & Tutorials I Compiled | How to Get Quick & Good Answers

  4. #4
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    15,606

    Re: Split Decimal Values

    Yes, *1000

  5. #5
    Valued Forum Contributor
    Join Date
    10-29-2012
    Location
    Mojokerto,Indonesia
    MS-Off Ver
    Excel 2007
    Posts
    554

    Re: Split Decimal Values

    =CONCATENATE(TRUNC(A1/10^5)&" quintal ",TRUNC(MOD(A1,10^5)/10^3)&" kilo ",MOD(A1,10^3)&" grams")

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. How Do I Split Text Based Upon Two Values To Split
    By HowdeeDoodee in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 11-08-2012, 05:05 AM
  2. different decimal points when values should be the same
    By dan2010 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 11-09-2010, 12:29 PM
  3. Split Annual Values into Monthly Values
    By nest in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 07-05-2010, 01:49 PM
  4. Format display decimal values but no decimal point
    By BecParko in forum Excel General
    Replies: 1
    Last Post: 10-18-2007, 04:42 AM
  5. [SOLVED] how to split one decimal pt integer off & to next columnin excel?
    By Roger Knights in forum Excel General
    Replies: 3
    Last Post: 10-26-2005, 08:05 PM

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