+ Reply to Thread
Results 1 to 5 of 5

Displaying only digits after the decimal point

Hybrid View

  1. #1
    Tat
    Guest

    Displaying only digits after the decimal point

    If i have a '13.75' in a cell, I would like to display just the .75 in
    another cell. How do I do this?

  2. #2
    Bob Phillips
    Guest

    Re: Displaying only digits after the decimal point

    =mod(a1,1)

    --
    HTH

    Bob Phillips

    "Tat" <Tat@discussions.microsoft.com> wrote in message
    news:ED34A2BB-BF41-4F15-853A-3516EB5496A9@microsoft.com...
    > If i have a '13.75' in a cell, I would like to display just the .75 in
    > another cell. How do I do this?




  3. #3
    Daniel CHEN
    Guest

    Re: Displaying only digits after the decimal point

    Try the following formula:

    =A1-INT(A1)
    A1 = 13.75, INT(A1) = 13, Result = 13.75-13 = 0.75

    ===== * ===== * ===== * =====
    Daniel CHEN

    Spreadsheet/VBA Specialist
    UDQServices@Gmail.com
    www.Geocities.com/UDQServices
    Your "Impossible" Task Could Be Someone Else's "Piece of Cake"
    ===== * ===== * ===== * =====

    "Tat" <Tat@discussions.microsoft.com> wrote in message
    news:ED34A2BB-BF41-4F15-853A-3516EB5496A9@microsoft.com...
    > If i have a '13.75' in a cell, I would like to display just the .75 in
    > another cell. How do I do this?




  4. #4
    N Harkawat
    Guest

    Re: Displaying only digits after the decimal point

    =a1-int(a1)
    where cell A1 holds 13.75
    and that 13.75 is NOT text

    If its a text field then
    =VALUE(RIGHT(A1,FIND(".",A1)))


    "Tat" <Tat@discussions.microsoft.com> wrote in message
    news:ED34A2BB-BF41-4F15-853A-3516EB5496A9@microsoft.com...
    > If i have a '13.75' in a cell, I would like to display just the .75 in
    > another cell. How do I do this?




  5. #5
    Tat
    Guest

    RE: Displaying only digits after the decimal point

    Thanks to all. All the solutions worked!

    "Tat" wrote:

    > If i have a '13.75' in a cell, I would like to display just the .75 in
    > another cell. How do I do this?


+ 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