+ Reply to Thread
Results 1 to 6 of 6

divinding part of a number

  1. #1
    Registered User
    Join Date
    05-26-2006
    Posts
    36

    divinding part of a number

    hopefully someone can help me out with this, driving me nuts
    If I have a number:

    106.05

    I want to divide whatever is after the decimal by 32.

    In the above example
    106.05
    I want to take (5/32) = .15625

    another example
    106.10
    (10/32) = .3125

    Anyone know a formula to do this???

    Thanks in advance

  2. #2
    Toppers
    Guest

    RE: divinding part of a number


    =(MOD(A1,1)/32*100)

    Provided you only have 2 digits after the decimal place

    123.456 would give result of 1.425 - is this correct?

    HTH

    "Solarissf" wrote:

    >
    > hopefully someone can help me out with this, driving me nuts
    > If I have a number:
    >
    > 106.05
    >
    > I want to divide whatever is after the decimal by 32.
    >
    > In the above example
    > 106.05
    > I want to take (5/32) = .15625
    >
    > another example
    > 106.10
    > (10/32) = .3125
    >
    > Anyone know a formula to do this???
    >
    > Thanks in advance
    >
    >
    > --
    > Solarissf
    > ------------------------------------------------------------------------
    > Solarissf's Profile: http://www.excelforum.com/member.php...o&userid=34834
    > View this thread: http://www.excelforum.com/showthread...hreadid=553246
    >
    >


  3. #3
    hans bal(nl)
    Guest

    RE: divinding part of a number

    use (106.05 - INT(106.05))/32

    "Solarissf" wrote:

    >
    > hopefully someone can help me out with this, driving me nuts
    > If I have a number:
    >
    > 106.05
    >
    > I want to divide whatever is after the decimal by 32.
    >
    > In the above example
    > 106.05
    > I want to take (5/32) = .15625
    >
    > another example
    > 106.10
    > (10/32) = .3125
    >
    > Anyone know a formula to do this???
    >
    > Thanks in advance
    >
    >
    > --
    > Solarissf
    > ------------------------------------------------------------------------
    > Solarissf's Profile: http://www.excelforum.com/member.php...o&userid=34834
    > View this thread: http://www.excelforum.com/showthread...hreadid=553246
    >
    >


  4. #4
    Bob Phillips
    Guest

    Re: divinding part of a number

    =MOD(A1,1)*100/32

    --
    HTH

    Bob Phillips

    (replace somewhere in email address with gmail if mailing direct)

    "Solarissf" <[email protected]> wrote
    in message news:[email protected]...
    >
    > hopefully someone can help me out with this, driving me nuts
    > If I have a number:
    >
    > 106.05
    >
    > I want to divide whatever is after the decimal by 32.
    >
    > In the above example
    > 106.05
    > I want to take (5/32) = .15625
    >
    > another example
    > 106.10
    > (10/32) = .3125
    >
    > Anyone know a formula to do this???
    >
    > Thanks in advance
    >
    >
    > --
    > Solarissf
    > ------------------------------------------------------------------------
    > Solarissf's Profile:

    http://www.excelforum.com/member.php...o&userid=34834
    > View this thread: http://www.excelforum.com/showthread...hreadid=553246
    >




  5. #5
    tim m
    Guest

    RE: divinding part of a number

    Do you always have 3 digits in front of the decimal? Is so this might work,
    =(A1-(LEFT(A1,3)))*100/32

    (If there are more or less than 3 digits in front of the decimals this
    formula will not work.)

    "Solarissf" wrote:

    >
    > hopefully someone can help me out with this, driving me nuts
    > If I have a number:
    >
    > 106.05
    >
    > I want to divide whatever is after the decimal by 32.
    >
    > In the above example
    > 106.05
    > I want to take (5/32) = .15625
    >
    > another example
    > 106.10
    > (10/32) = .3125
    >
    > Anyone know a formula to do this???
    >
    > Thanks in advance
    >
    >
    > --
    > Solarissf
    > ------------------------------------------------------------------------
    > Solarissf's Profile: http://www.excelforum.com/member.php...o&userid=34834
    > View this thread: http://www.excelforum.com/showthread...hreadid=553246
    >
    >


  6. #6
    Registered User
    Join Date
    05-26-2006
    Posts
    36
    works guys... THANKS!!!!

+ 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