+ Reply to Thread
Results 1 to 145 of 145

Function for Rounding of Number

Hybrid View

  1. #1
    Registered User
    Join Date
    07-10-2005
    Posts
    5

    Function for Rounding of Number

    I want to round of number for example:

    1.5 = 1
    1.6 = 2

    What function should I use. Please help me. Thanks

  2. #2
    Anne Troy
    Guest

    Re: Function for Rounding of Number

    =round(a1)
    *******************
    ~Anne Troy

    www.OfficeArticles.com
    www.MyExpertsOnline.com


    "aries0070" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I want to round of number for example:
    >
    > 1.5 = 1
    > 1.6 = 2
    >
    > What function should I use. Please help me. Thanks
    >
    >
    > --
    > aries0070
    > ------------------------------------------------------------------------
    > aries0070's Profile:

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




  3. #3
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    That will give a syntax error, since you didn't include the second
    argument.

    Note that even =ROUND(A1,0) will give the wrong answer for the OP's
    requirements. =ROUND(1.5,0) = 2, not 1.



    In article <[email protected]>,
    "Anne Troy" <[email protected]> wrote:

    > =round(a1)
    > *******************
    > ~Anne Troy
    >
    > www.OfficeArticles.com
    > www.MyExpertsOnline.com
    >
    >
    > "aries0070" <[email protected]> wrote
    > in message news:[email protected]...
    > >
    > > I want to round of number for example:
    > >
    > > 1.5 = 1
    > > 1.6 = 2
    > >
    > > What function should I use. Please help me. Thanks
    > >
    > >
    > > --
    > > aries0070
    > > ------------------------------------------------------------------------
    > > aries0070's Profile:

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


  4. #4
    Anne Troy
    Guest

    Re: Function for Rounding of Number

    Thanks. I blew that one, completely. Tried to get back to it when I saw they
    wanted to round DOWN on .5, and got tied up. Thanks.
    "JE McGimpsey" <[email protected]> wrote in message
    news:[email protected]...
    > That will give a syntax error, since you didn't include the second
    > argument.
    >
    > Note that even =ROUND(A1,0) will give the wrong answer for the OP's
    > requirements. =ROUND(1.5,0) = 2, not 1.
    >
    >
    >
    > In article <[email protected]>,
    > "Anne Troy" <[email protected]> wrote:
    >
    > > =round(a1)
    > > *******************
    > > ~Anne Troy
    > >
    > > www.OfficeArticles.com
    > > www.MyExpertsOnline.com
    > >
    > >
    > > "aries0070" <[email protected]>

    wrote
    > > in message

    news:[email protected]...
    > > >
    > > > I want to round of number for example:
    > > >
    > > > 1.5 = 1
    > > > 1.6 = 2
    > > >
    > > > What function should I use. Please help me. Thanks
    > > >
    > > >
    > > > --
    > > > aries0070

    > >

    > ------------------------------------------------------------------------
    > > > aries0070's Profile:

    > > http://www.excelforum.com/member.php...o&userid=25077
    > > > View this thread:

    http://www.excelforum.com/showthread...hreadid=386182
    > > >




  5. #5
    Registered User
    Join Date
    07-10-2005
    Posts
    5
    Thanks to all. I got it.

  6. #6
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    One way:

    =ROUND(A1,0)-(MOD(A1,1)=0.5)

    In article <[email protected]>,
    aries0070 <[email protected]>
    wrote:

    > I want to round of number for example:
    >
    > 1.5 = 1
    > 1.6 = 2
    >
    > What function should I use. Please help me. Thanks


  7. #7
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    Note: that works only for non-negative numbers. If you may be rounding
    negative numbers using the same pattern, use

    =ROUND(A1,0)-SIGN(A1)*(MOD(A1,1)=0.5)

    In article <[email protected]>,
    JE McGimpsey <[email protected]> wrote:

    > One way:
    >
    > =ROUND(A1,0)-(MOD(A1,1)=0.5)


  8. #8
    elioch
    Guest

    Re: Function for Rounding of Number


    Generally 1.4 is rounded rounded down and 1.5 and above is rounded up.

    =Round(a1,0) will behave as above. If you want to round
    down at 1.5 you need to apply as

    =Round(a1-1,0)


    Elioch


    --
    eliochPosted from http://www.pcreview.co.uk/ newsgroup access


  9. #9
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    Not really:

    =ROUND(A1-1,0) will round 1.6 to 1, not 2.

    In article <[email protected]>,
    elioch <elioch.1s0oq1@> wrote:

    > If you want to round down at 1.5 you need to apply as
    >
    > =Round(a1-1,0)
    >


  10. #10
    Bernard Liengme
    Guest

    Re: Function for Rounding of Number


    Not always! Some people, when rounding a number 5 as the test digit will
    round to even value.
    1.35 -> 1.4
    1.45 -> 1.4
    I have seen this called Banker's Rounding, New Math rounding, Australian
    rounding.
    Best wishes
    --
    Bernard V Liengme
    www.stfx.ca/people/bliengme
    remove caps from email

    "elioch" <elioch.1s0oq1@> wrote in message
    news:[email protected]...
    >
    > Generally 1.4 is rounded rounded down and 1.5 and above is rounded up.
    >
    > =Round(a1,0) will behave as above. If you want to round
    > down at 1.5 you need to apply as
    >
    > =Round(a1-1,0)
    >
    >
    > Elioch
    >
    >
    > --
    > eliochPosted from http://www.pcreview.co.uk/ newsgroup access
    >




  11. #11
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    That type of rounding is very common in science, too, where it prevents
    a bias away from zero.

    There are many other flavors. See

    http://support.microsoft.com/default...b;en-us;196652



    In article <[email protected]>,
    "Bernard Liengme" <[email protected]> wrote:

    > I have seen this called Banker's Rounding, New Math rounding, Australian
    > rounding.


  12. #12
    Jerry W. Lewis
    Guest

    Re: Function for Rounding of Number

    A more bullet-proof approach is given in

    http://groups-beta.google.com/group/...7fce6145b70d69

    As an example of the difference, try rounding =1110*0.0865 to 2 decimal
    places with microsoft's bround function and my ASTMround. Microsoft's
    bround will round 96.0150000000000 to 96.01, where my ASTMround will
    correctly round it to 96.02. Another example of the difference is
    referenced in that post.

    Jerry

    JE McGimpsey wrote:

    > That type of rounding is very common in science, too, where it prevents
    > a bias away from zero.
    >
    > There are many other flavors. See
    >
    > http://support.microsoft.com/default...b;en-us;196652
    >
    >
    >
    > In article <[email protected]>,
    > "Bernard Liengme" <[email protected]> wrote:
    >
    >
    >>I have seen this called Banker's Rounding, New Math rounding, Australian
    >>rounding.



  13. #13
    elioch
    Guest

    Re: Function for Rounding of Number


    CORRECTION

    =Round(a1,0) will behave as above. If you want to round down at 1.5 you
    need to apply as

    =Round(a1-0.1,0) it ishould be minus 0.1 and not minus 1 as stated
    before.

    Sorry

    Elioch


    --
    eliochPosted from http://www.pcreview.co.uk/ newsgroup access


  14. #14
    Anne Troy
    Guest

    Re: Function for Rounding of Number

    =round(a1)
    *******************
    ~Anne Troy

    www.OfficeArticles.com
    www.MyExpertsOnline.com


    "aries0070" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I want to round of number for example:
    >
    > 1.5 = 1
    > 1.6 = 2
    >
    > What function should I use. Please help me. Thanks
    >
    >
    > --
    > aries0070
    > ------------------------------------------------------------------------
    > aries0070's Profile:

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




  15. #15
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    That will give a syntax error, since you didn't include the second
    argument.

    Note that even =ROUND(A1,0) will give the wrong answer for the OP's
    requirements. =ROUND(1.5,0) = 2, not 1.



    In article <[email protected]>,
    "Anne Troy" <[email protected]> wrote:

    > =round(a1)
    > *******************
    > ~Anne Troy
    >
    > www.OfficeArticles.com
    > www.MyExpertsOnline.com
    >
    >
    > "aries0070" <[email protected]> wrote
    > in message news:[email protected]...
    > >
    > > I want to round of number for example:
    > >
    > > 1.5 = 1
    > > 1.6 = 2
    > >
    > > What function should I use. Please help me. Thanks
    > >
    > >
    > > --
    > > aries0070
    > > ------------------------------------------------------------------------
    > > aries0070's Profile:

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


  16. #16
    Anne Troy
    Guest

    Re: Function for Rounding of Number

    Thanks. I blew that one, completely. Tried to get back to it when I saw they
    wanted to round DOWN on .5, and got tied up. Thanks.
    "JE McGimpsey" <[email protected]> wrote in message
    news:[email protected]...
    > That will give a syntax error, since you didn't include the second
    > argument.
    >
    > Note that even =ROUND(A1,0) will give the wrong answer for the OP's
    > requirements. =ROUND(1.5,0) = 2, not 1.
    >
    >
    >
    > In article <[email protected]>,
    > "Anne Troy" <[email protected]> wrote:
    >
    > > =round(a1)
    > > *******************
    > > ~Anne Troy
    > >
    > > www.OfficeArticles.com
    > > www.MyExpertsOnline.com
    > >
    > >
    > > "aries0070" <[email protected]>

    wrote
    > > in message

    news:[email protected]...
    > > >
    > > > I want to round of number for example:
    > > >
    > > > 1.5 = 1
    > > > 1.6 = 2
    > > >
    > > > What function should I use. Please help me. Thanks
    > > >
    > > >
    > > > --
    > > > aries0070

    > >

    > ------------------------------------------------------------------------
    > > > aries0070's Profile:

    > > http://www.excelforum.com/member.php...o&userid=25077
    > > > View this thread:

    http://www.excelforum.com/showthread...hreadid=386182
    > > >




  17. #17
    Anne Troy
    Guest

    Re: Function for Rounding of Number

    Thanks. I blew that one, completely. Tried to get back to it when I saw they
    wanted to round DOWN on .5, and got tied up. Thanks.
    "JE McGimpsey" <[email protected]> wrote in message
    news:[email protected]...
    > That will give a syntax error, since you didn't include the second
    > argument.
    >
    > Note that even =ROUND(A1,0) will give the wrong answer for the OP's
    > requirements. =ROUND(1.5,0) = 2, not 1.
    >
    >
    >
    > In article <[email protected]>,
    > "Anne Troy" <[email protected]> wrote:
    >
    > > =round(a1)
    > > *******************
    > > ~Anne Troy
    > >
    > > www.OfficeArticles.com
    > > www.MyExpertsOnline.com
    > >
    > >
    > > "aries0070" <[email protected]>

    wrote
    > > in message

    news:[email protected]...
    > > >
    > > > I want to round of number for example:
    > > >
    > > > 1.5 = 1
    > > > 1.6 = 2
    > > >
    > > > What function should I use. Please help me. Thanks
    > > >
    > > >
    > > > --
    > > > aries0070

    > >

    > ------------------------------------------------------------------------
    > > > aries0070's Profile:

    > > http://www.excelforum.com/member.php...o&userid=25077
    > > > View this thread:

    http://www.excelforum.com/showthread...hreadid=386182
    > > >




  18. #18
    Anne Troy
    Guest

    Re: Function for Rounding of Number

    Thanks. I blew that one, completely. Tried to get back to it when I saw they
    wanted to round DOWN on .5, and got tied up. Thanks.
    "JE McGimpsey" <[email protected]> wrote in message
    news:[email protected]...
    > That will give a syntax error, since you didn't include the second
    > argument.
    >
    > Note that even =ROUND(A1,0) will give the wrong answer for the OP's
    > requirements. =ROUND(1.5,0) = 2, not 1.
    >
    >
    >
    > In article <[email protected]>,
    > "Anne Troy" <[email protected]> wrote:
    >
    > > =round(a1)
    > > *******************
    > > ~Anne Troy
    > >
    > > www.OfficeArticles.com
    > > www.MyExpertsOnline.com
    > >
    > >
    > > "aries0070" <[email protected]>

    wrote
    > > in message

    news:[email protected]...
    > > >
    > > > I want to round of number for example:
    > > >
    > > > 1.5 = 1
    > > > 1.6 = 2
    > > >
    > > > What function should I use. Please help me. Thanks
    > > >
    > > >
    > > > --
    > > > aries0070

    > >

    > ------------------------------------------------------------------------
    > > > aries0070's Profile:

    > > http://www.excelforum.com/member.php...o&userid=25077
    > > > View this thread:

    http://www.excelforum.com/showthread...hreadid=386182
    > > >




  19. #19
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    That will give a syntax error, since you didn't include the second
    argument.

    Note that even =ROUND(A1,0) will give the wrong answer for the OP's
    requirements. =ROUND(1.5,0) = 2, not 1.



    In article <[email protected]>,
    "Anne Troy" <[email protected]> wrote:

    > =round(a1)
    > *******************
    > ~Anne Troy
    >
    > www.OfficeArticles.com
    > www.MyExpertsOnline.com
    >
    >
    > "aries0070" <[email protected]> wrote
    > in message news:[email protected]...
    > >
    > > I want to round of number for example:
    > >
    > > 1.5 = 1
    > > 1.6 = 2
    > >
    > > What function should I use. Please help me. Thanks
    > >
    > >
    > > --
    > > aries0070
    > > ------------------------------------------------------------------------
    > > aries0070's Profile:

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


  20. #20
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    That will give a syntax error, since you didn't include the second
    argument.

    Note that even =ROUND(A1,0) will give the wrong answer for the OP's
    requirements. =ROUND(1.5,0) = 2, not 1.



    In article <[email protected]>,
    "Anne Troy" <[email protected]> wrote:

    > =round(a1)
    > *******************
    > ~Anne Troy
    >
    > www.OfficeArticles.com
    > www.MyExpertsOnline.com
    >
    >
    > "aries0070" <[email protected]> wrote
    > in message news:[email protected]...
    > >
    > > I want to round of number for example:
    > >
    > > 1.5 = 1
    > > 1.6 = 2
    > >
    > > What function should I use. Please help me. Thanks
    > >
    > >
    > > --
    > > aries0070
    > > ------------------------------------------------------------------------
    > > aries0070's Profile:

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


  21. #21
    Anne Troy
    Guest

    Re: Function for Rounding of Number

    =round(a1)
    *******************
    ~Anne Troy

    www.OfficeArticles.com
    www.MyExpertsOnline.com


    "aries0070" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I want to round of number for example:
    >
    > 1.5 = 1
    > 1.6 = 2
    >
    > What function should I use. Please help me. Thanks
    >
    >
    > --
    > aries0070
    > ------------------------------------------------------------------------
    > aries0070's Profile:

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




  22. #22
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    One way:

    =ROUND(A1,0)-(MOD(A1,1)=0.5)

    In article <[email protected]>,
    aries0070 <[email protected]>
    wrote:

    > I want to round of number for example:
    >
    > 1.5 = 1
    > 1.6 = 2
    >
    > What function should I use. Please help me. Thanks


  23. #23
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    One way:

    =ROUND(A1,0)-(MOD(A1,1)=0.5)

    In article <[email protected]>,
    aries0070 <[email protected]>
    wrote:

    > I want to round of number for example:
    >
    > 1.5 = 1
    > 1.6 = 2
    >
    > What function should I use. Please help me. Thanks


  24. #24
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    Note: that works only for non-negative numbers. If you may be rounding
    negative numbers using the same pattern, use

    =ROUND(A1,0)-SIGN(A1)*(MOD(A1,1)=0.5)

    In article <[email protected]>,
    JE McGimpsey <[email protected]> wrote:

    > One way:
    >
    > =ROUND(A1,0)-(MOD(A1,1)=0.5)


  25. #25
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    Note: that works only for non-negative numbers. If you may be rounding
    negative numbers using the same pattern, use

    =ROUND(A1,0)-SIGN(A1)*(MOD(A1,1)=0.5)

    In article <[email protected]>,
    JE McGimpsey <[email protected]> wrote:

    > One way:
    >
    > =ROUND(A1,0)-(MOD(A1,1)=0.5)


  26. #26
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    Note: that works only for non-negative numbers. If you may be rounding
    negative numbers using the same pattern, use

    =ROUND(A1,0)-SIGN(A1)*(MOD(A1,1)=0.5)

    In article <[email protected]>,
    JE McGimpsey <[email protected]> wrote:

    > One way:
    >
    > =ROUND(A1,0)-(MOD(A1,1)=0.5)


  27. #27
    elioch
    Guest

    Re: Function for Rounding of Number


    Generally 1.4 is rounded rounded down and 1.5 and above is rounded up.

    =Round(a1,0) will behave as above. If you want to round
    down at 1.5 you need to apply as

    =Round(a1-1,0)


    Elioch


    --
    eliochPosted from http://www.pcreview.co.uk/ newsgroup access


  28. #28
    elioch
    Guest

    Re: Function for Rounding of Number


    Generally 1.4 is rounded rounded down and 1.5 and above is rounded up.

    =Round(a1,0) will behave as above. If you want to round
    down at 1.5 you need to apply as

    =Round(a1-1,0)


    Elioch


    --
    eliochPosted from http://www.pcreview.co.uk/ newsgroup access


  29. #29
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    Not really:

    =ROUND(A1-1,0) will round 1.6 to 1, not 2.

    In article <[email protected]>,
    elioch <elioch.1s0oq1@> wrote:

    > If you want to round down at 1.5 you need to apply as
    >
    > =Round(a1-1,0)
    >


  30. #30
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    Not really:

    =ROUND(A1-1,0) will round 1.6 to 1, not 2.

    In article <[email protected]>,
    elioch <elioch.1s0oq1@> wrote:

    > If you want to round down at 1.5 you need to apply as
    >
    > =Round(a1-1,0)
    >


  31. #31
    Bernard Liengme
    Guest

    Re: Function for Rounding of Number


    Not always! Some people, when rounding a number 5 as the test digit will
    round to even value.
    1.35 -> 1.4
    1.45 -> 1.4
    I have seen this called Banker's Rounding, New Math rounding, Australian
    rounding.
    Best wishes
    --
    Bernard V Liengme
    www.stfx.ca/people/bliengme
    remove caps from email

    "elioch" <elioch.1s0oq1@> wrote in message
    news:[email protected]...
    >
    > Generally 1.4 is rounded rounded down and 1.5 and above is rounded up.
    >
    > =Round(a1,0) will behave as above. If you want to round
    > down at 1.5 you need to apply as
    >
    > =Round(a1-1,0)
    >
    >
    > Elioch
    >
    >
    > --
    > eliochPosted from http://www.pcreview.co.uk/ newsgroup access
    >




  32. #32
    Bernard Liengme
    Guest

    Re: Function for Rounding of Number


    Not always! Some people, when rounding a number 5 as the test digit will
    round to even value.
    1.35 -> 1.4
    1.45 -> 1.4
    I have seen this called Banker's Rounding, New Math rounding, Australian
    rounding.
    Best wishes
    --
    Bernard V Liengme
    www.stfx.ca/people/bliengme
    remove caps from email

    "elioch" <elioch.1s0oq1@> wrote in message
    news:[email protected]...
    >
    > Generally 1.4 is rounded rounded down and 1.5 and above is rounded up.
    >
    > =Round(a1,0) will behave as above. If you want to round
    > down at 1.5 you need to apply as
    >
    > =Round(a1-1,0)
    >
    >
    > Elioch
    >
    >
    > --
    > eliochPosted from http://www.pcreview.co.uk/ newsgroup access
    >




  33. #33
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    That type of rounding is very common in science, too, where it prevents
    a bias away from zero.

    There are many other flavors. See

    http://support.microsoft.com/default...b;en-us;196652



    In article <[email protected]>,
    "Bernard Liengme" <[email protected]> wrote:

    > I have seen this called Banker's Rounding, New Math rounding, Australian
    > rounding.


  34. #34
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    That type of rounding is very common in science, too, where it prevents
    a bias away from zero.

    There are many other flavors. See

    http://support.microsoft.com/default...b;en-us;196652



    In article <[email protected]>,
    "Bernard Liengme" <[email protected]> wrote:

    > I have seen this called Banker's Rounding, New Math rounding, Australian
    > rounding.


  35. #35
    Jerry W. Lewis
    Guest

    Re: Function for Rounding of Number

    A more bullet-proof approach is given in

    http://groups-beta.google.com/group/...7fce6145b70d69

    As an example of the difference, try rounding =1110*0.0865 to 2 decimal
    places with microsoft's bround function and my ASTMround. Microsoft's
    bround will round 96.0150000000000 to 96.01, where my ASTMround will
    correctly round it to 96.02. Another example of the difference is
    referenced in that post.

    Jerry

    JE McGimpsey wrote:

    > That type of rounding is very common in science, too, where it prevents
    > a bias away from zero.
    >
    > There are many other flavors. See
    >
    > http://support.microsoft.com/default...b;en-us;196652
    >
    >
    >
    > In article <[email protected]>,
    > "Bernard Liengme" <[email protected]> wrote:
    >
    >
    >>I have seen this called Banker's Rounding, New Math rounding, Australian
    >>rounding.



  36. #36
    Jerry W. Lewis
    Guest

    Re: Function for Rounding of Number

    A more bullet-proof approach is given in

    http://groups-beta.google.com/group/...7fce6145b70d69

    As an example of the difference, try rounding =1110*0.0865 to 2 decimal
    places with microsoft's bround function and my ASTMround. Microsoft's
    bround will round 96.0150000000000 to 96.01, where my ASTMround will
    correctly round it to 96.02. Another example of the difference is
    referenced in that post.

    Jerry

    JE McGimpsey wrote:

    > That type of rounding is very common in science, too, where it prevents
    > a bias away from zero.
    >
    > There are many other flavors. See
    >
    > http://support.microsoft.com/default...b;en-us;196652
    >
    >
    >
    > In article <[email protected]>,
    > "Bernard Liengme" <[email protected]> wrote:
    >
    >
    >>I have seen this called Banker's Rounding, New Math rounding, Australian
    >>rounding.



  37. #37
    Jerry W. Lewis
    Guest

    Re: Function for Rounding of Number

    A more bullet-proof approach is given in

    http://groups-beta.google.com/group/...7fce6145b70d69

    As an example of the difference, try rounding =1110*0.0865 to 2 decimal
    places with microsoft's bround function and my ASTMround. Microsoft's
    bround will round 96.0150000000000 to 96.01, where my ASTMround will
    correctly round it to 96.02. Another example of the difference is
    referenced in that post.

    Jerry

    JE McGimpsey wrote:

    > That type of rounding is very common in science, too, where it prevents
    > a bias away from zero.
    >
    > There are many other flavors. See
    >
    > http://support.microsoft.com/default...b;en-us;196652
    >
    >
    >
    > In article <[email protected]>,
    > "Bernard Liengme" <[email protected]> wrote:
    >
    >
    >>I have seen this called Banker's Rounding, New Math rounding, Australian
    >>rounding.



  38. #38
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    That type of rounding is very common in science, too, where it prevents
    a bias away from zero.

    There are many other flavors. See

    http://support.microsoft.com/default...b;en-us;196652



    In article <[email protected]>,
    "Bernard Liengme" <[email protected]> wrote:

    > I have seen this called Banker's Rounding, New Math rounding, Australian
    > rounding.


  39. #39
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    Not really:

    =ROUND(A1-1,0) will round 1.6 to 1, not 2.

    In article <[email protected]>,
    elioch <elioch.1s0oq1@> wrote:

    > If you want to round down at 1.5 you need to apply as
    >
    > =Round(a1-1,0)
    >


  40. #40
    Bernard Liengme
    Guest

    Re: Function for Rounding of Number


    Not always! Some people, when rounding a number 5 as the test digit will
    round to even value.
    1.35 -> 1.4
    1.45 -> 1.4
    I have seen this called Banker's Rounding, New Math rounding, Australian
    rounding.
    Best wishes
    --
    Bernard V Liengme
    www.stfx.ca/people/bliengme
    remove caps from email

    "elioch" <elioch.1s0oq1@> wrote in message
    news:[email protected]...
    >
    > Generally 1.4 is rounded rounded down and 1.5 and above is rounded up.
    >
    > =Round(a1,0) will behave as above. If you want to round
    > down at 1.5 you need to apply as
    >
    > =Round(a1-1,0)
    >
    >
    > Elioch
    >
    >
    > --
    > eliochPosted from http://www.pcreview.co.uk/ newsgroup access
    >




  41. #41
    elioch
    Guest

    Re: Function for Rounding of Number


    CORRECTION

    =Round(a1,0) will behave as above. If you want to round down at 1.5 you
    need to apply as

    =Round(a1-0.1,0) it ishould be minus 0.1 and not minus 1 as stated
    before.

    Sorry

    Elioch


    --
    eliochPosted from http://www.pcreview.co.uk/ newsgroup access


  42. #42
    elioch
    Guest

    Re: Function for Rounding of Number


    CORRECTION

    =Round(a1,0) will behave as above. If you want to round down at 1.5 you
    need to apply as

    =Round(a1-0.1,0) it ishould be minus 0.1 and not minus 1 as stated
    before.

    Sorry

    Elioch


    --
    eliochPosted from http://www.pcreview.co.uk/ newsgroup access


  43. #43
    Anne Troy
    Guest

    Re: Function for Rounding of Number

    =round(a1)
    *******************
    ~Anne Troy

    www.OfficeArticles.com
    www.MyExpertsOnline.com


    "aries0070" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I want to round of number for example:
    >
    > 1.5 = 1
    > 1.6 = 2
    >
    > What function should I use. Please help me. Thanks
    >
    >
    > --
    > aries0070
    > ------------------------------------------------------------------------
    > aries0070's Profile:

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




  44. #44
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    One way:

    =ROUND(A1,0)-(MOD(A1,1)=0.5)

    In article <[email protected]>,
    aries0070 <[email protected]>
    wrote:

    > I want to round of number for example:
    >
    > 1.5 = 1
    > 1.6 = 2
    >
    > What function should I use. Please help me. Thanks


  45. #45
    elioch
    Guest

    Re: Function for Rounding of Number


    Generally 1.4 is rounded rounded down and 1.5 and above is rounded up.

    =Round(a1,0) will behave as above. If you want to round
    down at 1.5 you need to apply as

    =Round(a1-1,0)


    Elioch


    --
    eliochPosted from http://www.pcreview.co.uk/ newsgroup access


  46. #46
    elioch
    Guest

    Re: Function for Rounding of Number


    CORRECTION

    =Round(a1,0) will behave as above. If you want to round down at 1.5 you
    need to apply as

    =Round(a1-0.1,0) it ishould be minus 0.1 and not minus 1 as stated
    before.

    Sorry

    Elioch


    --
    eliochPosted from http://www.pcreview.co.uk/ newsgroup access


  47. #47
    Anne Troy
    Guest

    Re: Function for Rounding of Number

    =round(a1)
    *******************
    ~Anne Troy

    www.OfficeArticles.com
    www.MyExpertsOnline.com


    "aries0070" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I want to round of number for example:
    >
    > 1.5 = 1
    > 1.6 = 2
    >
    > What function should I use. Please help me. Thanks
    >
    >
    > --
    > aries0070
    > ------------------------------------------------------------------------
    > aries0070's Profile:

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




  48. #48
    Anne Troy
    Guest

    Re: Function for Rounding of Number

    =round(a1)
    *******************
    ~Anne Troy

    www.OfficeArticles.com
    www.MyExpertsOnline.com


    "aries0070" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I want to round of number for example:
    >
    > 1.5 = 1
    > 1.6 = 2
    >
    > What function should I use. Please help me. Thanks
    >
    >
    > --
    > aries0070
    > ------------------------------------------------------------------------
    > aries0070's Profile:

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




  49. #49
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    That will give a syntax error, since you didn't include the second
    argument.

    Note that even =ROUND(A1,0) will give the wrong answer for the OP's
    requirements. =ROUND(1.5,0) = 2, not 1.



    In article <[email protected]>,
    "Anne Troy" <[email protected]> wrote:

    > =round(a1)
    > *******************
    > ~Anne Troy
    >
    > www.OfficeArticles.com
    > www.MyExpertsOnline.com
    >
    >
    > "aries0070" <[email protected]> wrote
    > in message news:[email protected]...
    > >
    > > I want to round of number for example:
    > >
    > > 1.5 = 1
    > > 1.6 = 2
    > >
    > > What function should I use. Please help me. Thanks
    > >
    > >
    > > --
    > > aries0070
    > > ------------------------------------------------------------------------
    > > aries0070's Profile:

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


  50. #50
    Anne Troy
    Guest

    Re: Function for Rounding of Number

    Thanks. I blew that one, completely. Tried to get back to it when I saw they
    wanted to round DOWN on .5, and got tied up. Thanks.
    "JE McGimpsey" <[email protected]> wrote in message
    news:[email protected]...
    > That will give a syntax error, since you didn't include the second
    > argument.
    >
    > Note that even =ROUND(A1,0) will give the wrong answer for the OP's
    > requirements. =ROUND(1.5,0) = 2, not 1.
    >
    >
    >
    > In article <[email protected]>,
    > "Anne Troy" <[email protected]> wrote:
    >
    > > =round(a1)
    > > *******************
    > > ~Anne Troy
    > >
    > > www.OfficeArticles.com
    > > www.MyExpertsOnline.com
    > >
    > >
    > > "aries0070" <[email protected]>

    wrote
    > > in message

    news:[email protected]...
    > > >
    > > > I want to round of number for example:
    > > >
    > > > 1.5 = 1
    > > > 1.6 = 2
    > > >
    > > > What function should I use. Please help me. Thanks
    > > >
    > > >
    > > > --
    > > > aries0070

    > >

    > ------------------------------------------------------------------------
    > > > aries0070's Profile:

    > > http://www.excelforum.com/member.php...o&userid=25077
    > > > View this thread:

    http://www.excelforum.com/showthread...hreadid=386182
    > > >




  51. #51
    Anne Troy
    Guest

    Re: Function for Rounding of Number

    Thanks. I blew that one, completely. Tried to get back to it when I saw they
    wanted to round DOWN on .5, and got tied up. Thanks.
    "JE McGimpsey" <[email protected]> wrote in message
    news:[email protected]...
    > That will give a syntax error, since you didn't include the second
    > argument.
    >
    > Note that even =ROUND(A1,0) will give the wrong answer for the OP's
    > requirements. =ROUND(1.5,0) = 2, not 1.
    >
    >
    >
    > In article <[email protected]>,
    > "Anne Troy" <[email protected]> wrote:
    >
    > > =round(a1)
    > > *******************
    > > ~Anne Troy
    > >
    > > www.OfficeArticles.com
    > > www.MyExpertsOnline.com
    > >
    > >
    > > "aries0070" <[email protected]>

    wrote
    > > in message

    news:[email protected]...
    > > >
    > > > I want to round of number for example:
    > > >
    > > > 1.5 = 1
    > > > 1.6 = 2
    > > >
    > > > What function should I use. Please help me. Thanks
    > > >
    > > >
    > > > --
    > > > aries0070

    > >

    > ------------------------------------------------------------------------
    > > > aries0070's Profile:

    > > http://www.excelforum.com/member.php...o&userid=25077
    > > > View this thread:

    http://www.excelforum.com/showthread...hreadid=386182
    > > >




  52. #52
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    That will give a syntax error, since you didn't include the second
    argument.

    Note that even =ROUND(A1,0) will give the wrong answer for the OP's
    requirements. =ROUND(1.5,0) = 2, not 1.



    In article <[email protected]>,
    "Anne Troy" <[email protected]> wrote:

    > =round(a1)
    > *******************
    > ~Anne Troy
    >
    > www.OfficeArticles.com
    > www.MyExpertsOnline.com
    >
    >
    > "aries0070" <[email protected]> wrote
    > in message news:[email protected]...
    > >
    > > I want to round of number for example:
    > >
    > > 1.5 = 1
    > > 1.6 = 2
    > >
    > > What function should I use. Please help me. Thanks
    > >
    > >
    > > --
    > > aries0070
    > > ------------------------------------------------------------------------
    > > aries0070's Profile:

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


  53. #53
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    One way:

    =ROUND(A1,0)-(MOD(A1,1)=0.5)

    In article <[email protected]>,
    aries0070 <[email protected]>
    wrote:

    > I want to round of number for example:
    >
    > 1.5 = 1
    > 1.6 = 2
    >
    > What function should I use. Please help me. Thanks


  54. #54
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    One way:

    =ROUND(A1,0)-(MOD(A1,1)=0.5)

    In article <[email protected]>,
    aries0070 <[email protected]>
    wrote:

    > I want to round of number for example:
    >
    > 1.5 = 1
    > 1.6 = 2
    >
    > What function should I use. Please help me. Thanks


  55. #55
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    Note: that works only for non-negative numbers. If you may be rounding
    negative numbers using the same pattern, use

    =ROUND(A1,0)-SIGN(A1)*(MOD(A1,1)=0.5)

    In article <[email protected]>,
    JE McGimpsey <[email protected]> wrote:

    > One way:
    >
    > =ROUND(A1,0)-(MOD(A1,1)=0.5)


  56. #56
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    Note: that works only for non-negative numbers. If you may be rounding
    negative numbers using the same pattern, use

    =ROUND(A1,0)-SIGN(A1)*(MOD(A1,1)=0.5)

    In article <[email protected]>,
    JE McGimpsey <[email protected]> wrote:

    > One way:
    >
    > =ROUND(A1,0)-(MOD(A1,1)=0.5)


  57. #57
    elioch
    Guest

    Re: Function for Rounding of Number


    Generally 1.4 is rounded rounded down and 1.5 and above is rounded up.

    =Round(a1,0) will behave as above. If you want to round
    down at 1.5 you need to apply as

    =Round(a1-1,0)


    Elioch


    --
    eliochPosted from http://www.pcreview.co.uk/ newsgroup access


  58. #58
    elioch
    Guest

    Re: Function for Rounding of Number


    Generally 1.4 is rounded rounded down and 1.5 and above is rounded up.

    =Round(a1,0) will behave as above. If you want to round
    down at 1.5 you need to apply as

    =Round(a1-1,0)


    Elioch


    --
    eliochPosted from http://www.pcreview.co.uk/ newsgroup access


  59. #59
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    Not really:

    =ROUND(A1-1,0) will round 1.6 to 1, not 2.

    In article <[email protected]>,
    elioch <elioch.1s0oq1@> wrote:

    > If you want to round down at 1.5 you need to apply as
    >
    > =Round(a1-1,0)
    >


  60. #60
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    Not really:

    =ROUND(A1-1,0) will round 1.6 to 1, not 2.

    In article <[email protected]>,
    elioch <elioch.1s0oq1@> wrote:

    > If you want to round down at 1.5 you need to apply as
    >
    > =Round(a1-1,0)
    >


  61. #61
    Bernard Liengme
    Guest

    Re: Function for Rounding of Number


    Not always! Some people, when rounding a number 5 as the test digit will
    round to even value.
    1.35 -> 1.4
    1.45 -> 1.4
    I have seen this called Banker's Rounding, New Math rounding, Australian
    rounding.
    Best wishes
    --
    Bernard V Liengme
    www.stfx.ca/people/bliengme
    remove caps from email

    "elioch" <elioch.1s0oq1@> wrote in message
    news:[email protected]...
    >
    > Generally 1.4 is rounded rounded down and 1.5 and above is rounded up.
    >
    > =Round(a1,0) will behave as above. If you want to round
    > down at 1.5 you need to apply as
    >
    > =Round(a1-1,0)
    >
    >
    > Elioch
    >
    >
    > --
    > eliochPosted from http://www.pcreview.co.uk/ newsgroup access
    >




  62. #62
    Bernard Liengme
    Guest

    Re: Function for Rounding of Number


    Not always! Some people, when rounding a number 5 as the test digit will
    round to even value.
    1.35 -> 1.4
    1.45 -> 1.4
    I have seen this called Banker's Rounding, New Math rounding, Australian
    rounding.
    Best wishes
    --
    Bernard V Liengme
    www.stfx.ca/people/bliengme
    remove caps from email

    "elioch" <elioch.1s0oq1@> wrote in message
    news:[email protected]...
    >
    > Generally 1.4 is rounded rounded down and 1.5 and above is rounded up.
    >
    > =Round(a1,0) will behave as above. If you want to round
    > down at 1.5 you need to apply as
    >
    > =Round(a1-1,0)
    >
    >
    > Elioch
    >
    >
    > --
    > eliochPosted from http://www.pcreview.co.uk/ newsgroup access
    >




  63. #63
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    That type of rounding is very common in science, too, where it prevents
    a bias away from zero.

    There are many other flavors. See

    http://support.microsoft.com/default...b;en-us;196652



    In article <[email protected]>,
    "Bernard Liengme" <[email protected]> wrote:

    > I have seen this called Banker's Rounding, New Math rounding, Australian
    > rounding.


  64. #64
    Jerry W. Lewis
    Guest

    Re: Function for Rounding of Number

    A more bullet-proof approach is given in

    http://groups-beta.google.com/group/...7fce6145b70d69

    As an example of the difference, try rounding =1110*0.0865 to 2 decimal
    places with microsoft's bround function and my ASTMround. Microsoft's
    bround will round 96.0150000000000 to 96.01, where my ASTMround will
    correctly round it to 96.02. Another example of the difference is
    referenced in that post.

    Jerry

    JE McGimpsey wrote:

    > That type of rounding is very common in science, too, where it prevents
    > a bias away from zero.
    >
    > There are many other flavors. See
    >
    > http://support.microsoft.com/default...b;en-us;196652
    >
    >
    >
    > In article <[email protected]>,
    > "Bernard Liengme" <[email protected]> wrote:
    >
    >
    >>I have seen this called Banker's Rounding, New Math rounding, Australian
    >>rounding.



  65. #65
    Jerry W. Lewis
    Guest

    Re: Function for Rounding of Number

    A more bullet-proof approach is given in

    http://groups-beta.google.com/group/...7fce6145b70d69

    As an example of the difference, try rounding =1110*0.0865 to 2 decimal
    places with microsoft's bround function and my ASTMround. Microsoft's
    bround will round 96.0150000000000 to 96.01, where my ASTMround will
    correctly round it to 96.02. Another example of the difference is
    referenced in that post.

    Jerry

    JE McGimpsey wrote:

    > That type of rounding is very common in science, too, where it prevents
    > a bias away from zero.
    >
    > There are many other flavors. See
    >
    > http://support.microsoft.com/default...b;en-us;196652
    >
    >
    >
    > In article <[email protected]>,
    > "Bernard Liengme" <[email protected]> wrote:
    >
    >
    >>I have seen this called Banker's Rounding, New Math rounding, Australian
    >>rounding.



  66. #66
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    That type of rounding is very common in science, too, where it prevents
    a bias away from zero.

    There are many other flavors. See

    http://support.microsoft.com/default...b;en-us;196652



    In article <[email protected]>,
    "Bernard Liengme" <[email protected]> wrote:

    > I have seen this called Banker's Rounding, New Math rounding, Australian
    > rounding.


  67. #67
    elioch
    Guest

    Re: Function for Rounding of Number


    CORRECTION

    =Round(a1,0) will behave as above. If you want to round down at 1.5 you
    need to apply as

    =Round(a1-0.1,0) it ishould be minus 0.1 and not minus 1 as stated
    before.

    Sorry

    Elioch


    --
    eliochPosted from http://www.pcreview.co.uk/ newsgroup access


  68. #68
    elioch
    Guest

    Re: Function for Rounding of Number


    CORRECTION

    =Round(a1,0) will behave as above. If you want to round down at 1.5 you
    need to apply as

    =Round(a1-0.1,0) it ishould be minus 0.1 and not minus 1 as stated
    before.

    Sorry

    Elioch


    --
    eliochPosted from http://www.pcreview.co.uk/ newsgroup access


  69. #69
    Anne Troy
    Guest

    Re: Function for Rounding of Number

    =round(a1)
    *******************
    ~Anne Troy

    www.OfficeArticles.com
    www.MyExpertsOnline.com


    "aries0070" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I want to round of number for example:
    >
    > 1.5 = 1
    > 1.6 = 2
    >
    > What function should I use. Please help me. Thanks
    >
    >
    > --
    > aries0070
    > ------------------------------------------------------------------------
    > aries0070's Profile:

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




  70. #70
    Anne Troy
    Guest

    Re: Function for Rounding of Number

    =round(a1)
    *******************
    ~Anne Troy

    www.OfficeArticles.com
    www.MyExpertsOnline.com


    "aries0070" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I want to round of number for example:
    >
    > 1.5 = 1
    > 1.6 = 2
    >
    > What function should I use. Please help me. Thanks
    >
    >
    > --
    > aries0070
    > ------------------------------------------------------------------------
    > aries0070's Profile:

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




  71. #71
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    That will give a syntax error, since you didn't include the second
    argument.

    Note that even =ROUND(A1,0) will give the wrong answer for the OP's
    requirements. =ROUND(1.5,0) = 2, not 1.



    In article <[email protected]>,
    "Anne Troy" <[email protected]> wrote:

    > =round(a1)
    > *******************
    > ~Anne Troy
    >
    > www.OfficeArticles.com
    > www.MyExpertsOnline.com
    >
    >
    > "aries0070" <[email protected]> wrote
    > in message news:[email protected]...
    > >
    > > I want to round of number for example:
    > >
    > > 1.5 = 1
    > > 1.6 = 2
    > >
    > > What function should I use. Please help me. Thanks
    > >
    > >
    > > --
    > > aries0070
    > > ------------------------------------------------------------------------
    > > aries0070's Profile:

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


  72. #72
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    That will give a syntax error, since you didn't include the second
    argument.

    Note that even =ROUND(A1,0) will give the wrong answer for the OP's
    requirements. =ROUND(1.5,0) = 2, not 1.



    In article <[email protected]>,
    "Anne Troy" <[email protected]> wrote:

    > =round(a1)
    > *******************
    > ~Anne Troy
    >
    > www.OfficeArticles.com
    > www.MyExpertsOnline.com
    >
    >
    > "aries0070" <[email protected]> wrote
    > in message news:[email protected]...
    > >
    > > I want to round of number for example:
    > >
    > > 1.5 = 1
    > > 1.6 = 2
    > >
    > > What function should I use. Please help me. Thanks
    > >
    > >
    > > --
    > > aries0070
    > > ------------------------------------------------------------------------
    > > aries0070's Profile:

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


  73. #73
    Anne Troy
    Guest

    Re: Function for Rounding of Number

    Thanks. I blew that one, completely. Tried to get back to it when I saw they
    wanted to round DOWN on .5, and got tied up. Thanks.
    "JE McGimpsey" <[email protected]> wrote in message
    news:[email protected]...
    > That will give a syntax error, since you didn't include the second
    > argument.
    >
    > Note that even =ROUND(A1,0) will give the wrong answer for the OP's
    > requirements. =ROUND(1.5,0) = 2, not 1.
    >
    >
    >
    > In article <[email protected]>,
    > "Anne Troy" <[email protected]> wrote:
    >
    > > =round(a1)
    > > *******************
    > > ~Anne Troy
    > >
    > > www.OfficeArticles.com
    > > www.MyExpertsOnline.com
    > >
    > >
    > > "aries0070" <[email protected]>

    wrote
    > > in message

    news:[email protected]...
    > > >
    > > > I want to round of number for example:
    > > >
    > > > 1.5 = 1
    > > > 1.6 = 2
    > > >
    > > > What function should I use. Please help me. Thanks
    > > >
    > > >
    > > > --
    > > > aries0070

    > >

    > ------------------------------------------------------------------------
    > > > aries0070's Profile:

    > > http://www.excelforum.com/member.php...o&userid=25077
    > > > View this thread:

    http://www.excelforum.com/showthread...hreadid=386182
    > > >




  74. #74
    Anne Troy
    Guest

    Re: Function for Rounding of Number

    Thanks. I blew that one, completely. Tried to get back to it when I saw they
    wanted to round DOWN on .5, and got tied up. Thanks.
    "JE McGimpsey" <[email protected]> wrote in message
    news:[email protected]...
    > That will give a syntax error, since you didn't include the second
    > argument.
    >
    > Note that even =ROUND(A1,0) will give the wrong answer for the OP's
    > requirements. =ROUND(1.5,0) = 2, not 1.
    >
    >
    >
    > In article <[email protected]>,
    > "Anne Troy" <[email protected]> wrote:
    >
    > > =round(a1)
    > > *******************
    > > ~Anne Troy
    > >
    > > www.OfficeArticles.com
    > > www.MyExpertsOnline.com
    > >
    > >
    > > "aries0070" <[email protected]>

    wrote
    > > in message

    news:[email protected]...
    > > >
    > > > I want to round of number for example:
    > > >
    > > > 1.5 = 1
    > > > 1.6 = 2
    > > >
    > > > What function should I use. Please help me. Thanks
    > > >
    > > >
    > > > --
    > > > aries0070

    > >

    > ------------------------------------------------------------------------
    > > > aries0070's Profile:

    > > http://www.excelforum.com/member.php...o&userid=25077
    > > > View this thread:

    http://www.excelforum.com/showthread...hreadid=386182
    > > >




  75. #75
    Anne Troy
    Guest

    Re: Function for Rounding of Number

    Thanks. I blew that one, completely. Tried to get back to it when I saw they
    wanted to round DOWN on .5, and got tied up. Thanks.
    "JE McGimpsey" <[email protected]> wrote in message
    news:[email protected]...
    > That will give a syntax error, since you didn't include the second
    > argument.
    >
    > Note that even =ROUND(A1,0) will give the wrong answer for the OP's
    > requirements. =ROUND(1.5,0) = 2, not 1.
    >
    >
    >
    > In article <[email protected]>,
    > "Anne Troy" <[email protected]> wrote:
    >
    > > =round(a1)
    > > *******************
    > > ~Anne Troy
    > >
    > > www.OfficeArticles.com
    > > www.MyExpertsOnline.com
    > >
    > >
    > > "aries0070" <[email protected]>

    wrote
    > > in message

    news:[email protected]...
    > > >
    > > > I want to round of number for example:
    > > >
    > > > 1.5 = 1
    > > > 1.6 = 2
    > > >
    > > > What function should I use. Please help me. Thanks
    > > >
    > > >
    > > > --
    > > > aries0070

    > >

    > ------------------------------------------------------------------------
    > > > aries0070's Profile:

    > > http://www.excelforum.com/member.php...o&userid=25077
    > > > View this thread:

    http://www.excelforum.com/showthread...hreadid=386182
    > > >




  76. #76
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    That will give a syntax error, since you didn't include the second
    argument.

    Note that even =ROUND(A1,0) will give the wrong answer for the OP's
    requirements. =ROUND(1.5,0) = 2, not 1.



    In article <[email protected]>,
    "Anne Troy" <[email protected]> wrote:

    > =round(a1)
    > *******************
    > ~Anne Troy
    >
    > www.OfficeArticles.com
    > www.MyExpertsOnline.com
    >
    >
    > "aries0070" <[email protected]> wrote
    > in message news:[email protected]...
    > >
    > > I want to round of number for example:
    > >
    > > 1.5 = 1
    > > 1.6 = 2
    > >
    > > What function should I use. Please help me. Thanks
    > >
    > >
    > > --
    > > aries0070
    > > ------------------------------------------------------------------------
    > > aries0070's Profile:

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


  77. #77
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    One way:

    =ROUND(A1,0)-(MOD(A1,1)=0.5)

    In article <[email protected]>,
    aries0070 <[email protected]>
    wrote:

    > I want to round of number for example:
    >
    > 1.5 = 1
    > 1.6 = 2
    >
    > What function should I use. Please help me. Thanks


  78. #78
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    One way:

    =ROUND(A1,0)-(MOD(A1,1)=0.5)

    In article <[email protected]>,
    aries0070 <[email protected]>
    wrote:

    > I want to round of number for example:
    >
    > 1.5 = 1
    > 1.6 = 2
    >
    > What function should I use. Please help me. Thanks


  79. #79
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    Note: that works only for non-negative numbers. If you may be rounding
    negative numbers using the same pattern, use

    =ROUND(A1,0)-SIGN(A1)*(MOD(A1,1)=0.5)

    In article <[email protected]>,
    JE McGimpsey <[email protected]> wrote:

    > One way:
    >
    > =ROUND(A1,0)-(MOD(A1,1)=0.5)


  80. #80
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    Note: that works only for non-negative numbers. If you may be rounding
    negative numbers using the same pattern, use

    =ROUND(A1,0)-SIGN(A1)*(MOD(A1,1)=0.5)

    In article <[email protected]>,
    JE McGimpsey <[email protected]> wrote:

    > One way:
    >
    > =ROUND(A1,0)-(MOD(A1,1)=0.5)


  81. #81
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    Note: that works only for non-negative numbers. If you may be rounding
    negative numbers using the same pattern, use

    =ROUND(A1,0)-SIGN(A1)*(MOD(A1,1)=0.5)

    In article <[email protected]>,
    JE McGimpsey <[email protected]> wrote:

    > One way:
    >
    > =ROUND(A1,0)-(MOD(A1,1)=0.5)


  82. #82
    elioch
    Guest

    Re: Function for Rounding of Number


    Generally 1.4 is rounded rounded down and 1.5 and above is rounded up.

    =Round(a1,0) will behave as above. If you want to round
    down at 1.5 you need to apply as

    =Round(a1-1,0)


    Elioch


    --
    eliochPosted from http://www.pcreview.co.uk/ newsgroup access


  83. #83
    elioch
    Guest

    Re: Function for Rounding of Number


    Generally 1.4 is rounded rounded down and 1.5 and above is rounded up.

    =Round(a1,0) will behave as above. If you want to round
    down at 1.5 you need to apply as

    =Round(a1-1,0)


    Elioch


    --
    eliochPosted from http://www.pcreview.co.uk/ newsgroup access


  84. #84
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    Not really:

    =ROUND(A1-1,0) will round 1.6 to 1, not 2.

    In article <[email protected]>,
    elioch <elioch.1s0oq1@> wrote:

    > If you want to round down at 1.5 you need to apply as
    >
    > =Round(a1-1,0)
    >


  85. #85
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    Not really:

    =ROUND(A1-1,0) will round 1.6 to 1, not 2.

    In article <[email protected]>,
    elioch <elioch.1s0oq1@> wrote:

    > If you want to round down at 1.5 you need to apply as
    >
    > =Round(a1-1,0)
    >


  86. #86
    Bernard Liengme
    Guest

    Re: Function for Rounding of Number


    Not always! Some people, when rounding a number 5 as the test digit will
    round to even value.
    1.35 -> 1.4
    1.45 -> 1.4
    I have seen this called Banker's Rounding, New Math rounding, Australian
    rounding.
    Best wishes
    --
    Bernard V Liengme
    www.stfx.ca/people/bliengme
    remove caps from email

    "elioch" <elioch.1s0oq1@> wrote in message
    news:[email protected]...
    >
    > Generally 1.4 is rounded rounded down and 1.5 and above is rounded up.
    >
    > =Round(a1,0) will behave as above. If you want to round
    > down at 1.5 you need to apply as
    >
    > =Round(a1-1,0)
    >
    >
    > Elioch
    >
    >
    > --
    > eliochPosted from http://www.pcreview.co.uk/ newsgroup access
    >




  87. #87
    Bernard Liengme
    Guest

    Re: Function for Rounding of Number


    Not always! Some people, when rounding a number 5 as the test digit will
    round to even value.
    1.35 -> 1.4
    1.45 -> 1.4
    I have seen this called Banker's Rounding, New Math rounding, Australian
    rounding.
    Best wishes
    --
    Bernard V Liengme
    www.stfx.ca/people/bliengme
    remove caps from email

    "elioch" <elioch.1s0oq1@> wrote in message
    news:[email protected]...
    >
    > Generally 1.4 is rounded rounded down and 1.5 and above is rounded up.
    >
    > =Round(a1,0) will behave as above. If you want to round
    > down at 1.5 you need to apply as
    >
    > =Round(a1-1,0)
    >
    >
    > Elioch
    >
    >
    > --
    > eliochPosted from http://www.pcreview.co.uk/ newsgroup access
    >




  88. #88
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    That type of rounding is very common in science, too, where it prevents
    a bias away from zero.

    There are many other flavors. See

    http://support.microsoft.com/default...b;en-us;196652



    In article <[email protected]>,
    "Bernard Liengme" <[email protected]> wrote:

    > I have seen this called Banker's Rounding, New Math rounding, Australian
    > rounding.


  89. #89
    Jerry W. Lewis
    Guest

    Re: Function for Rounding of Number

    A more bullet-proof approach is given in

    http://groups-beta.google.com/group/...7fce6145b70d69

    As an example of the difference, try rounding =1110*0.0865 to 2 decimal
    places with microsoft's bround function and my ASTMround. Microsoft's
    bround will round 96.0150000000000 to 96.01, where my ASTMround will
    correctly round it to 96.02. Another example of the difference is
    referenced in that post.

    Jerry

    JE McGimpsey wrote:

    > That type of rounding is very common in science, too, where it prevents
    > a bias away from zero.
    >
    > There are many other flavors. See
    >
    > http://support.microsoft.com/default...b;en-us;196652
    >
    >
    >
    > In article <[email protected]>,
    > "Bernard Liengme" <[email protected]> wrote:
    >
    >
    >>I have seen this called Banker's Rounding, New Math rounding, Australian
    >>rounding.



  90. #90
    Jerry W. Lewis
    Guest

    Re: Function for Rounding of Number

    A more bullet-proof approach is given in

    http://groups-beta.google.com/group/...7fce6145b70d69

    As an example of the difference, try rounding =1110*0.0865 to 2 decimal
    places with microsoft's bround function and my ASTMround. Microsoft's
    bround will round 96.0150000000000 to 96.01, where my ASTMround will
    correctly round it to 96.02. Another example of the difference is
    referenced in that post.

    Jerry

    JE McGimpsey wrote:

    > That type of rounding is very common in science, too, where it prevents
    > a bias away from zero.
    >
    > There are many other flavors. See
    >
    > http://support.microsoft.com/default...b;en-us;196652
    >
    >
    >
    > In article <[email protected]>,
    > "Bernard Liengme" <[email protected]> wrote:
    >
    >
    >>I have seen this called Banker's Rounding, New Math rounding, Australian
    >>rounding.



  91. #91
    Jerry W. Lewis
    Guest

    Re: Function for Rounding of Number

    A more bullet-proof approach is given in

    http://groups-beta.google.com/group/...7fce6145b70d69

    As an example of the difference, try rounding =1110*0.0865 to 2 decimal
    places with microsoft's bround function and my ASTMround. Microsoft's
    bround will round 96.0150000000000 to 96.01, where my ASTMround will
    correctly round it to 96.02. Another example of the difference is
    referenced in that post.

    Jerry

    JE McGimpsey wrote:

    > That type of rounding is very common in science, too, where it prevents
    > a bias away from zero.
    >
    > There are many other flavors. See
    >
    > http://support.microsoft.com/default...b;en-us;196652
    >
    >
    >
    > In article <[email protected]>,
    > "Bernard Liengme" <[email protected]> wrote:
    >
    >
    >>I have seen this called Banker's Rounding, New Math rounding, Australian
    >>rounding.



  92. #92
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    That type of rounding is very common in science, too, where it prevents
    a bias away from zero.

    There are many other flavors. See

    http://support.microsoft.com/default...b;en-us;196652



    In article <[email protected]>,
    "Bernard Liengme" <[email protected]> wrote:

    > I have seen this called Banker's Rounding, New Math rounding, Australian
    > rounding.


  93. #93
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    That type of rounding is very common in science, too, where it prevents
    a bias away from zero.

    There are many other flavors. See

    http://support.microsoft.com/default...b;en-us;196652



    In article <[email protected]>,
    "Bernard Liengme" <[email protected]> wrote:

    > I have seen this called Banker's Rounding, New Math rounding, Australian
    > rounding.


  94. #94
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    Not really:

    =ROUND(A1-1,0) will round 1.6 to 1, not 2.

    In article <[email protected]>,
    elioch <elioch.1s0oq1@> wrote:

    > If you want to round down at 1.5 you need to apply as
    >
    > =Round(a1-1,0)
    >


  95. #95
    Bernard Liengme
    Guest

    Re: Function for Rounding of Number


    Not always! Some people, when rounding a number 5 as the test digit will
    round to even value.
    1.35 -> 1.4
    1.45 -> 1.4
    I have seen this called Banker's Rounding, New Math rounding, Australian
    rounding.
    Best wishes
    --
    Bernard V Liengme
    www.stfx.ca/people/bliengme
    remove caps from email

    "elioch" <elioch.1s0oq1@> wrote in message
    news:[email protected]...
    >
    > Generally 1.4 is rounded rounded down and 1.5 and above is rounded up.
    >
    > =Round(a1,0) will behave as above. If you want to round
    > down at 1.5 you need to apply as
    >
    > =Round(a1-1,0)
    >
    >
    > Elioch
    >
    >
    > --
    > eliochPosted from http://www.pcreview.co.uk/ newsgroup access
    >




  96. #96
    elioch
    Guest

    Re: Function for Rounding of Number


    CORRECTION

    =Round(a1,0) will behave as above. If you want to round down at 1.5 you
    need to apply as

    =Round(a1-0.1,0) it ishould be minus 0.1 and not minus 1 as stated
    before.

    Sorry

    Elioch


    --
    eliochPosted from http://www.pcreview.co.uk/ newsgroup access


  97. #97
    elioch
    Guest

    Re: Function for Rounding of Number


    CORRECTION

    =Round(a1,0) will behave as above. If you want to round down at 1.5 you
    need to apply as

    =Round(a1-0.1,0) it ishould be minus 0.1 and not minus 1 as stated
    before.

    Sorry

    Elioch


    --
    eliochPosted from http://www.pcreview.co.uk/ newsgroup access


  98. #98
    Anne Troy
    Guest

    Re: Function for Rounding of Number

    =round(a1)
    *******************
    ~Anne Troy

    www.OfficeArticles.com
    www.MyExpertsOnline.com


    "aries0070" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I want to round of number for example:
    >
    > 1.5 = 1
    > 1.6 = 2
    >
    > What function should I use. Please help me. Thanks
    >
    >
    > --
    > aries0070
    > ------------------------------------------------------------------------
    > aries0070's Profile:

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




  99. #99
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    One way:

    =ROUND(A1,0)-(MOD(A1,1)=0.5)

    In article <[email protected]>,
    aries0070 <[email protected]>
    wrote:

    > I want to round of number for example:
    >
    > 1.5 = 1
    > 1.6 = 2
    >
    > What function should I use. Please help me. Thanks


  100. #100
    elioch
    Guest

    Re: Function for Rounding of Number


    Generally 1.4 is rounded rounded down and 1.5 and above is rounded up.

    =Round(a1,0) will behave as above. If you want to round
    down at 1.5 you need to apply as

    =Round(a1-1,0)


    Elioch


    --
    eliochPosted from http://www.pcreview.co.uk/ newsgroup access


  101. #101
    elioch
    Guest

    Re: Function for Rounding of Number


    CORRECTION

    =Round(a1,0) will behave as above. If you want to round down at 1.5 you
    need to apply as

    =Round(a1-0.1,0) it ishould be minus 0.1 and not minus 1 as stated
    before.

    Sorry

    Elioch


    --
    eliochPosted from http://www.pcreview.co.uk/ newsgroup access


  102. #102
    Anne Troy
    Guest

    Re: Function for Rounding of Number

    =round(a1)
    *******************
    ~Anne Troy

    www.OfficeArticles.com
    www.MyExpertsOnline.com


    "aries0070" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I want to round of number for example:
    >
    > 1.5 = 1
    > 1.6 = 2
    >
    > What function should I use. Please help me. Thanks
    >
    >
    > --
    > aries0070
    > ------------------------------------------------------------------------
    > aries0070's Profile:

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




  103. #103
    Anne Troy
    Guest

    Re: Function for Rounding of Number

    =round(a1)
    *******************
    ~Anne Troy

    www.OfficeArticles.com
    www.MyExpertsOnline.com


    "aries0070" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I want to round of number for example:
    >
    > 1.5 = 1
    > 1.6 = 2
    >
    > What function should I use. Please help me. Thanks
    >
    >
    > --
    > aries0070
    > ------------------------------------------------------------------------
    > aries0070's Profile:

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




  104. #104
    Anne Troy
    Guest

    Re: Function for Rounding of Number

    =round(a1)
    *******************
    ~Anne Troy

    www.OfficeArticles.com
    www.MyExpertsOnline.com


    "aries0070" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I want to round of number for example:
    >
    > 1.5 = 1
    > 1.6 = 2
    >
    > What function should I use. Please help me. Thanks
    >
    >
    > --
    > aries0070
    > ------------------------------------------------------------------------
    > aries0070's Profile:

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




  105. #105
    Anne Troy
    Guest

    Re: Function for Rounding of Number

    =round(a1)
    *******************
    ~Anne Troy

    www.OfficeArticles.com
    www.MyExpertsOnline.com


    "aries0070" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I want to round of number for example:
    >
    > 1.5 = 1
    > 1.6 = 2
    >
    > What function should I use. Please help me. Thanks
    >
    >
    > --
    > aries0070
    > ------------------------------------------------------------------------
    > aries0070's Profile:

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




  106. #106
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    That will give a syntax error, since you didn't include the second
    argument.

    Note that even =ROUND(A1,0) will give the wrong answer for the OP's
    requirements. =ROUND(1.5,0) = 2, not 1.



    In article <[email protected]>,
    "Anne Troy" <[email protected]> wrote:

    > =round(a1)
    > *******************
    > ~Anne Troy
    >
    > www.OfficeArticles.com
    > www.MyExpertsOnline.com
    >
    >
    > "aries0070" <[email protected]> wrote
    > in message news:[email protected]...
    > >
    > > I want to round of number for example:
    > >
    > > 1.5 = 1
    > > 1.6 = 2
    > >
    > > What function should I use. Please help me. Thanks
    > >
    > >
    > > --
    > > aries0070
    > > ------------------------------------------------------------------------
    > > aries0070's Profile:

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


  107. #107
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    That will give a syntax error, since you didn't include the second
    argument.

    Note that even =ROUND(A1,0) will give the wrong answer for the OP's
    requirements. =ROUND(1.5,0) = 2, not 1.



    In article <[email protected]>,
    "Anne Troy" <[email protected]> wrote:

    > =round(a1)
    > *******************
    > ~Anne Troy
    >
    > www.OfficeArticles.com
    > www.MyExpertsOnline.com
    >
    >
    > "aries0070" <[email protected]> wrote
    > in message news:[email protected]...
    > >
    > > I want to round of number for example:
    > >
    > > 1.5 = 1
    > > 1.6 = 2
    > >
    > > What function should I use. Please help me. Thanks
    > >
    > >
    > > --
    > > aries0070
    > > ------------------------------------------------------------------------
    > > aries0070's Profile:

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


  108. #108
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    That will give a syntax error, since you didn't include the second
    argument.

    Note that even =ROUND(A1,0) will give the wrong answer for the OP's
    requirements. =ROUND(1.5,0) = 2, not 1.



    In article <[email protected]>,
    "Anne Troy" <[email protected]> wrote:

    > =round(a1)
    > *******************
    > ~Anne Troy
    >
    > www.OfficeArticles.com
    > www.MyExpertsOnline.com
    >
    >
    > "aries0070" <[email protected]> wrote
    > in message news:[email protected]...
    > >
    > > I want to round of number for example:
    > >
    > > 1.5 = 1
    > > 1.6 = 2
    > >
    > > What function should I use. Please help me. Thanks
    > >
    > >
    > > --
    > > aries0070
    > > ------------------------------------------------------------------------
    > > aries0070's Profile:

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


  109. #109
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    That will give a syntax error, since you didn't include the second
    argument.

    Note that even =ROUND(A1,0) will give the wrong answer for the OP's
    requirements. =ROUND(1.5,0) = 2, not 1.



    In article <[email protected]>,
    "Anne Troy" <[email protected]> wrote:

    > =round(a1)
    > *******************
    > ~Anne Troy
    >
    > www.OfficeArticles.com
    > www.MyExpertsOnline.com
    >
    >
    > "aries0070" <[email protected]> wrote
    > in message news:[email protected]...
    > >
    > > I want to round of number for example:
    > >
    > > 1.5 = 1
    > > 1.6 = 2
    > >
    > > What function should I use. Please help me. Thanks
    > >
    > >
    > > --
    > > aries0070
    > > ------------------------------------------------------------------------
    > > aries0070's Profile:

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


  110. #110
    Anne Troy
    Guest

    Re: Function for Rounding of Number

    Thanks. I blew that one, completely. Tried to get back to it when I saw they
    wanted to round DOWN on .5, and got tied up. Thanks.
    "JE McGimpsey" <[email protected]> wrote in message
    news:[email protected]...
    > That will give a syntax error, since you didn't include the second
    > argument.
    >
    > Note that even =ROUND(A1,0) will give the wrong answer for the OP's
    > requirements. =ROUND(1.5,0) = 2, not 1.
    >
    >
    >
    > In article <[email protected]>,
    > "Anne Troy" <[email protected]> wrote:
    >
    > > =round(a1)
    > > *******************
    > > ~Anne Troy
    > >
    > > www.OfficeArticles.com
    > > www.MyExpertsOnline.com
    > >
    > >
    > > "aries0070" <[email protected]>

    wrote
    > > in message

    news:[email protected]...
    > > >
    > > > I want to round of number for example:
    > > >
    > > > 1.5 = 1
    > > > 1.6 = 2
    > > >
    > > > What function should I use. Please help me. Thanks
    > > >
    > > >
    > > > --
    > > > aries0070

    > >

    > ------------------------------------------------------------------------
    > > > aries0070's Profile:

    > > http://www.excelforum.com/member.php...o&userid=25077
    > > > View this thread:

    http://www.excelforum.com/showthread...hreadid=386182
    > > >




  111. #111
    Anne Troy
    Guest

    Re: Function for Rounding of Number

    Thanks. I blew that one, completely. Tried to get back to it when I saw they
    wanted to round DOWN on .5, and got tied up. Thanks.
    "JE McGimpsey" <[email protected]> wrote in message
    news:[email protected]...
    > That will give a syntax error, since you didn't include the second
    > argument.
    >
    > Note that even =ROUND(A1,0) will give the wrong answer for the OP's
    > requirements. =ROUND(1.5,0) = 2, not 1.
    >
    >
    >
    > In article <[email protected]>,
    > "Anne Troy" <[email protected]> wrote:
    >
    > > =round(a1)
    > > *******************
    > > ~Anne Troy
    > >
    > > www.OfficeArticles.com
    > > www.MyExpertsOnline.com
    > >
    > >
    > > "aries0070" <[email protected]>

    wrote
    > > in message

    news:[email protected]...
    > > >
    > > > I want to round of number for example:
    > > >
    > > > 1.5 = 1
    > > > 1.6 = 2
    > > >
    > > > What function should I use. Please help me. Thanks
    > > >
    > > >
    > > > --
    > > > aries0070

    > >

    > ------------------------------------------------------------------------
    > > > aries0070's Profile:

    > > http://www.excelforum.com/member.php...o&userid=25077
    > > > View this thread:

    http://www.excelforum.com/showthread...hreadid=386182
    > > >




  112. #112
    Anne Troy
    Guest

    Re: Function for Rounding of Number

    Thanks. I blew that one, completely. Tried to get back to it when I saw they
    wanted to round DOWN on .5, and got tied up. Thanks.
    "JE McGimpsey" <[email protected]> wrote in message
    news:[email protected]...
    > That will give a syntax error, since you didn't include the second
    > argument.
    >
    > Note that even =ROUND(A1,0) will give the wrong answer for the OP's
    > requirements. =ROUND(1.5,0) = 2, not 1.
    >
    >
    >
    > In article <[email protected]>,
    > "Anne Troy" <[email protected]> wrote:
    >
    > > =round(a1)
    > > *******************
    > > ~Anne Troy
    > >
    > > www.OfficeArticles.com
    > > www.MyExpertsOnline.com
    > >
    > >
    > > "aries0070" <[email protected]>

    wrote
    > > in message

    news:[email protected]...
    > > >
    > > > I want to round of number for example:
    > > >
    > > > 1.5 = 1
    > > > 1.6 = 2
    > > >
    > > > What function should I use. Please help me. Thanks
    > > >
    > > >
    > > > --
    > > > aries0070

    > >

    > ------------------------------------------------------------------------
    > > > aries0070's Profile:

    > > http://www.excelforum.com/member.php...o&userid=25077
    > > > View this thread:

    http://www.excelforum.com/showthread...hreadid=386182
    > > >




  113. #113
    Anne Troy
    Guest

    Re: Function for Rounding of Number

    Thanks. I blew that one, completely. Tried to get back to it when I saw they
    wanted to round DOWN on .5, and got tied up. Thanks.
    "JE McGimpsey" <[email protected]> wrote in message
    news:[email protected]...
    > That will give a syntax error, since you didn't include the second
    > argument.
    >
    > Note that even =ROUND(A1,0) will give the wrong answer for the OP's
    > requirements. =ROUND(1.5,0) = 2, not 1.
    >
    >
    >
    > In article <[email protected]>,
    > "Anne Troy" <[email protected]> wrote:
    >
    > > =round(a1)
    > > *******************
    > > ~Anne Troy
    > >
    > > www.OfficeArticles.com
    > > www.MyExpertsOnline.com
    > >
    > >
    > > "aries0070" <[email protected]>

    wrote
    > > in message

    news:[email protected]...
    > > >
    > > > I want to round of number for example:
    > > >
    > > > 1.5 = 1
    > > > 1.6 = 2
    > > >
    > > > What function should I use. Please help me. Thanks
    > > >
    > > >
    > > > --
    > > > aries0070

    > >

    > ------------------------------------------------------------------------
    > > > aries0070's Profile:

    > > http://www.excelforum.com/member.php...o&userid=25077
    > > > View this thread:

    http://www.excelforum.com/showthread...hreadid=386182
    > > >




  114. #114
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    One way:

    =ROUND(A1,0)-(MOD(A1,1)=0.5)

    In article <[email protected]>,
    aries0070 <[email protected]>
    wrote:

    > I want to round of number for example:
    >
    > 1.5 = 1
    > 1.6 = 2
    >
    > What function should I use. Please help me. Thanks


  115. #115
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    One way:

    =ROUND(A1,0)-(MOD(A1,1)=0.5)

    In article <[email protected]>,
    aries0070 <[email protected]>
    wrote:

    > I want to round of number for example:
    >
    > 1.5 = 1
    > 1.6 = 2
    >
    > What function should I use. Please help me. Thanks


  116. #116
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    One way:

    =ROUND(A1,0)-(MOD(A1,1)=0.5)

    In article <[email protected]>,
    aries0070 <[email protected]>
    wrote:

    > I want to round of number for example:
    >
    > 1.5 = 1
    > 1.6 = 2
    >
    > What function should I use. Please help me. Thanks


  117. #117
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    One way:

    =ROUND(A1,0)-(MOD(A1,1)=0.5)

    In article <[email protected]>,
    aries0070 <[email protected]>
    wrote:

    > I want to round of number for example:
    >
    > 1.5 = 1
    > 1.6 = 2
    >
    > What function should I use. Please help me. Thanks


  118. #118
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    Note: that works only for non-negative numbers. If you may be rounding
    negative numbers using the same pattern, use

    =ROUND(A1,0)-SIGN(A1)*(MOD(A1,1)=0.5)

    In article <[email protected]>,
    JE McGimpsey <[email protected]> wrote:

    > One way:
    >
    > =ROUND(A1,0)-(MOD(A1,1)=0.5)


  119. #119
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    Note: that works only for non-negative numbers. If you may be rounding
    negative numbers using the same pattern, use

    =ROUND(A1,0)-SIGN(A1)*(MOD(A1,1)=0.5)

    In article <[email protected]>,
    JE McGimpsey <[email protected]> wrote:

    > One way:
    >
    > =ROUND(A1,0)-(MOD(A1,1)=0.5)


  120. #120
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    Note: that works only for non-negative numbers. If you may be rounding
    negative numbers using the same pattern, use

    =ROUND(A1,0)-SIGN(A1)*(MOD(A1,1)=0.5)

    In article <[email protected]>,
    JE McGimpsey <[email protected]> wrote:

    > One way:
    >
    > =ROUND(A1,0)-(MOD(A1,1)=0.5)


  121. #121
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    Note: that works only for non-negative numbers. If you may be rounding
    negative numbers using the same pattern, use

    =ROUND(A1,0)-SIGN(A1)*(MOD(A1,1)=0.5)

    In article <[email protected]>,
    JE McGimpsey <[email protected]> wrote:

    > One way:
    >
    > =ROUND(A1,0)-(MOD(A1,1)=0.5)


  122. #122
    elioch
    Guest

    Re: Function for Rounding of Number


    Generally 1.4 is rounded rounded down and 1.5 and above is rounded up.

    =Round(a1,0) will behave as above. If you want to round
    down at 1.5 you need to apply as

    =Round(a1-1,0)


    Elioch


    --
    eliochPosted from http://www.pcreview.co.uk/ newsgroup access


  123. #123
    elioch
    Guest

    Re: Function for Rounding of Number


    Generally 1.4 is rounded rounded down and 1.5 and above is rounded up.

    =Round(a1,0) will behave as above. If you want to round
    down at 1.5 you need to apply as

    =Round(a1-1,0)


    Elioch


    --
    eliochPosted from http://www.pcreview.co.uk/ newsgroup access


  124. #124
    elioch
    Guest

    Re: Function for Rounding of Number


    Generally 1.4 is rounded rounded down and 1.5 and above is rounded up.

    =Round(a1,0) will behave as above. If you want to round
    down at 1.5 you need to apply as

    =Round(a1-1,0)


    Elioch


    --
    eliochPosted from http://www.pcreview.co.uk/ newsgroup access


  125. #125
    elioch
    Guest

    Re: Function for Rounding of Number


    Generally 1.4 is rounded rounded down and 1.5 and above is rounded up.

    =Round(a1,0) will behave as above. If you want to round
    down at 1.5 you need to apply as

    =Round(a1-1,0)


    Elioch


    --
    eliochPosted from http://www.pcreview.co.uk/ newsgroup access


  126. #126
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    Not really:

    =ROUND(A1-1,0) will round 1.6 to 1, not 2.

    In article <[email protected]>,
    elioch <elioch.1s0oq1@> wrote:

    > If you want to round down at 1.5 you need to apply as
    >
    > =Round(a1-1,0)
    >


  127. #127
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    Not really:

    =ROUND(A1-1,0) will round 1.6 to 1, not 2.

    In article <[email protected]>,
    elioch <elioch.1s0oq1@> wrote:

    > If you want to round down at 1.5 you need to apply as
    >
    > =Round(a1-1,0)
    >


  128. #128
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    Not really:

    =ROUND(A1-1,0) will round 1.6 to 1, not 2.

    In article <[email protected]>,
    elioch <elioch.1s0oq1@> wrote:

    > If you want to round down at 1.5 you need to apply as
    >
    > =Round(a1-1,0)
    >


  129. #129
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    Not really:

    =ROUND(A1-1,0) will round 1.6 to 1, not 2.

    In article <[email protected]>,
    elioch <elioch.1s0oq1@> wrote:

    > If you want to round down at 1.5 you need to apply as
    >
    > =Round(a1-1,0)
    >


  130. #130
    Bernard Liengme
    Guest

    Re: Function for Rounding of Number


    Not always! Some people, when rounding a number 5 as the test digit will
    round to even value.
    1.35 -> 1.4
    1.45 -> 1.4
    I have seen this called Banker's Rounding, New Math rounding, Australian
    rounding.
    Best wishes
    --
    Bernard V Liengme
    www.stfx.ca/people/bliengme
    remove caps from email

    "elioch" <elioch.1s0oq1@> wrote in message
    news:[email protected]...
    >
    > Generally 1.4 is rounded rounded down and 1.5 and above is rounded up.
    >
    > =Round(a1,0) will behave as above. If you want to round
    > down at 1.5 you need to apply as
    >
    > =Round(a1-1,0)
    >
    >
    > Elioch
    >
    >
    > --
    > eliochPosted from http://www.pcreview.co.uk/ newsgroup access
    >




  131. #131
    Bernard Liengme
    Guest

    Re: Function for Rounding of Number


    Not always! Some people, when rounding a number 5 as the test digit will
    round to even value.
    1.35 -> 1.4
    1.45 -> 1.4
    I have seen this called Banker's Rounding, New Math rounding, Australian
    rounding.
    Best wishes
    --
    Bernard V Liengme
    www.stfx.ca/people/bliengme
    remove caps from email

    "elioch" <elioch.1s0oq1@> wrote in message
    news:[email protected]...
    >
    > Generally 1.4 is rounded rounded down and 1.5 and above is rounded up.
    >
    > =Round(a1,0) will behave as above. If you want to round
    > down at 1.5 you need to apply as
    >
    > =Round(a1-1,0)
    >
    >
    > Elioch
    >
    >
    > --
    > eliochPosted from http://www.pcreview.co.uk/ newsgroup access
    >




  132. #132
    Bernard Liengme
    Guest

    Re: Function for Rounding of Number


    Not always! Some people, when rounding a number 5 as the test digit will
    round to even value.
    1.35 -> 1.4
    1.45 -> 1.4
    I have seen this called Banker's Rounding, New Math rounding, Australian
    rounding.
    Best wishes
    --
    Bernard V Liengme
    www.stfx.ca/people/bliengme
    remove caps from email

    "elioch" <elioch.1s0oq1@> wrote in message
    news:[email protected]...
    >
    > Generally 1.4 is rounded rounded down and 1.5 and above is rounded up.
    >
    > =Round(a1,0) will behave as above. If you want to round
    > down at 1.5 you need to apply as
    >
    > =Round(a1-1,0)
    >
    >
    > Elioch
    >
    >
    > --
    > eliochPosted from http://www.pcreview.co.uk/ newsgroup access
    >




  133. #133
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    That type of rounding is very common in science, too, where it prevents
    a bias away from zero.

    There are many other flavors. See

    http://support.microsoft.com/default...b;en-us;196652



    In article <[email protected]>,
    "Bernard Liengme" <[email protected]> wrote:

    > I have seen this called Banker's Rounding, New Math rounding, Australian
    > rounding.


  134. #134
    Jerry W. Lewis
    Guest

    Re: Function for Rounding of Number

    A more bullet-proof approach is given in

    http://groups-beta.google.com/group/...7fce6145b70d69

    As an example of the difference, try rounding =1110*0.0865 to 2 decimal
    places with microsoft's bround function and my ASTMround. Microsoft's
    bround will round 96.0150000000000 to 96.01, where my ASTMround will
    correctly round it to 96.02. Another example of the difference is
    referenced in that post.

    Jerry

    JE McGimpsey wrote:

    > That type of rounding is very common in science, too, where it prevents
    > a bias away from zero.
    >
    > There are many other flavors. See
    >
    > http://support.microsoft.com/default...b;en-us;196652
    >
    >
    >
    > In article <[email protected]>,
    > "Bernard Liengme" <[email protected]> wrote:
    >
    >
    >>I have seen this called Banker's Rounding, New Math rounding, Australian
    >>rounding.



  135. #135
    Jerry W. Lewis
    Guest

    Re: Function for Rounding of Number

    A more bullet-proof approach is given in

    http://groups-beta.google.com/group/...7fce6145b70d69

    As an example of the difference, try rounding =1110*0.0865 to 2 decimal
    places with microsoft's bround function and my ASTMround. Microsoft's
    bround will round 96.0150000000000 to 96.01, where my ASTMround will
    correctly round it to 96.02. Another example of the difference is
    referenced in that post.

    Jerry

    JE McGimpsey wrote:

    > That type of rounding is very common in science, too, where it prevents
    > a bias away from zero.
    >
    > There are many other flavors. See
    >
    > http://support.microsoft.com/default...b;en-us;196652
    >
    >
    >
    > In article <[email protected]>,
    > "Bernard Liengme" <[email protected]> wrote:
    >
    >
    >>I have seen this called Banker's Rounding, New Math rounding, Australian
    >>rounding.



  136. #136
    Jerry W. Lewis
    Guest

    Re: Function for Rounding of Number

    A more bullet-proof approach is given in

    http://groups-beta.google.com/group/...7fce6145b70d69

    As an example of the difference, try rounding =1110*0.0865 to 2 decimal
    places with microsoft's bround function and my ASTMround. Microsoft's
    bround will round 96.0150000000000 to 96.01, where my ASTMround will
    correctly round it to 96.02. Another example of the difference is
    referenced in that post.

    Jerry

    JE McGimpsey wrote:

    > That type of rounding is very common in science, too, where it prevents
    > a bias away from zero.
    >
    > There are many other flavors. See
    >
    > http://support.microsoft.com/default...b;en-us;196652
    >
    >
    >
    > In article <[email protected]>,
    > "Bernard Liengme" <[email protected]> wrote:
    >
    >
    >>I have seen this called Banker's Rounding, New Math rounding, Australian
    >>rounding.



  137. #137
    Jerry W. Lewis
    Guest

    Re: Function for Rounding of Number

    A more bullet-proof approach is given in

    http://groups-beta.google.com/group/...7fce6145b70d69

    As an example of the difference, try rounding =1110*0.0865 to 2 decimal
    places with microsoft's bround function and my ASTMround. Microsoft's
    bround will round 96.0150000000000 to 96.01, where my ASTMround will
    correctly round it to 96.02. Another example of the difference is
    referenced in that post.

    Jerry

    JE McGimpsey wrote:

    > That type of rounding is very common in science, too, where it prevents
    > a bias away from zero.
    >
    > There are many other flavors. See
    >
    > http://support.microsoft.com/default...b;en-us;196652
    >
    >
    >
    > In article <[email protected]>,
    > "Bernard Liengme" <[email protected]> wrote:
    >
    >
    >>I have seen this called Banker's Rounding, New Math rounding, Australian
    >>rounding.



  138. #138
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    That type of rounding is very common in science, too, where it prevents
    a bias away from zero.

    There are many other flavors. See

    http://support.microsoft.com/default...b;en-us;196652



    In article <[email protected]>,
    "Bernard Liengme" <[email protected]> wrote:

    > I have seen this called Banker's Rounding, New Math rounding, Australian
    > rounding.


  139. #139
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    That type of rounding is very common in science, too, where it prevents
    a bias away from zero.

    There are many other flavors. See

    http://support.microsoft.com/default...b;en-us;196652



    In article <[email protected]>,
    "Bernard Liengme" <[email protected]> wrote:

    > I have seen this called Banker's Rounding, New Math rounding, Australian
    > rounding.


  140. #140
    JE McGimpsey
    Guest

    Re: Function for Rounding of Number

    That type of rounding is very common in science, too, where it prevents
    a bias away from zero.

    There are many other flavors. See

    http://support.microsoft.com/default...b;en-us;196652



    In article <[email protected]>,
    "Bernard Liengme" <[email protected]> wrote:

    > I have seen this called Banker's Rounding, New Math rounding, Australian
    > rounding.


  141. #141
    Bernard Liengme
    Guest

    Re: Function for Rounding of Number


    Not always! Some people, when rounding a number 5 as the test digit will
    round to even value.
    1.35 -> 1.4
    1.45 -> 1.4
    I have seen this called Banker's Rounding, New Math rounding, Australian
    rounding.
    Best wishes
    --
    Bernard V Liengme
    www.stfx.ca/people/bliengme
    remove caps from email

    "elioch" <elioch.1s0oq1@> wrote in message
    news:[email protected]...
    >
    > Generally 1.4 is rounded rounded down and 1.5 and above is rounded up.
    >
    > =Round(a1,0) will behave as above. If you want to round
    > down at 1.5 you need to apply as
    >
    > =Round(a1-1,0)
    >
    >
    > Elioch
    >
    >
    > --
    > eliochPosted from http://www.pcreview.co.uk/ newsgroup access
    >




  142. #142
    elioch
    Guest

    Re: Function for Rounding of Number


    CORRECTION

    =Round(a1,0) will behave as above. If you want to round down at 1.5 you
    need to apply as

    =Round(a1-0.1,0) it ishould be minus 0.1 and not minus 1 as stated
    before.

    Sorry

    Elioch


    --
    eliochPosted from http://www.pcreview.co.uk/ newsgroup access


  143. #143
    elioch
    Guest

    Re: Function for Rounding of Number


    CORRECTION

    =Round(a1,0) will behave as above. If you want to round down at 1.5 you
    need to apply as

    =Round(a1-0.1,0) it ishould be minus 0.1 and not minus 1 as stated
    before.

    Sorry

    Elioch


    --
    eliochPosted from http://www.pcreview.co.uk/ newsgroup access


  144. #144
    elioch
    Guest

    Re: Function for Rounding of Number


    CORRECTION

    =Round(a1,0) will behave as above. If you want to round down at 1.5 you
    need to apply as

    =Round(a1-0.1,0) it ishould be minus 0.1 and not minus 1 as stated
    before.

    Sorry

    Elioch


    --
    eliochPosted from http://www.pcreview.co.uk/ newsgroup access


  145. #145
    elioch
    Guest

    Re: Function for Rounding of Number


    CORRECTION

    =Round(a1,0) will behave as above. If you want to round down at 1.5 you
    need to apply as

    =Round(a1-0.1,0) it ishould be minus 0.1 and not minus 1 as stated
    before.

    Sorry

    Elioch


    --
    eliochPosted from http://www.pcreview.co.uk/ newsgroup access


+ 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