+ Reply to Thread
Results 1 to 9 of 9

Ending In 5

  1. #1
    JR
    Guest

    Ending In 5

    Hello,

    I have a column of numbers that end in many different numbers such as 7.66,
    3.43 ect. I would like to make all the numbers to end in 5. Such as 7.65 and
    3.45.

    Thanks JR,



  2. #2
    CLR
    Guest

    Re: Ending In 5

    Assuming your list is in column A, put the following formula in B1 and copy
    down..........

    =(INT(A1)&MID(A1,FIND(".",A1,1),2)&5)*1

    Vaya con Dios,
    Chuck, CABGx3


    "JR" <gaspower@aol.com> wrote in message
    news:SgNpe.1436$bv7.732@newssvr21.news.prodigy.com...
    > Hello,
    >
    > I have a column of numbers that end in many different numbers such as

    7.66,
    > 3.43 ect. I would like to make all the numbers to end in 5. Such as 7.65

    and
    > 3.45.
    >
    > Thanks JR,
    >
    >




  3. #3
    Biff
    Guest

    Re: Ending In 5

    Hi!

    Try this:

    =ROUND(A1/0.05,0)*0.05

    Biff

    "JR" <gaspower@aol.com> wrote in message
    news:SgNpe.1436$bv7.732@newssvr21.news.prodigy.com...
    > Hello,
    >
    > I have a column of numbers that end in many different numbers such as
    > 7.66, 3.43 ect. I would like to make all the numbers to end in 5. Such as
    > 7.65 and 3.45.
    >
    > Thanks JR,
    >




  4. #4
    Alan
    Guest

    Re: Ending In 5


    "JR" <gaspower@aol.com> wrote in message
    news:SgNpe.1436$bv7.732@newssvr21.news.prodigy.com...
    > Hello,
    >
    > I have a column of numbers that end in many different numbers such
    > as 7.66, 3.43 ect. I would like to make all the numbers to end in 5.
    > Such as 7.65 and 3.45.
    >
    > Thanks JR,
    >
    >


    Hi JR,

    Try this:

    ROUND((A1+0.05)/0.1,0)*0.1-0.05


    I am assuming you really did mean that you want each answer to end in
    a 5 (rather than rounding to the nearest 0.05 which could result in,
    say, 3.40.

    If you just want to round to the nearest 0.05 then use the formula
    posted by Biff.

    HTH,

    Alan.






  5. #5
    Robert_Steel@nospam.com
    Guest

    Re: Ending In 5

    >=ROUND(A1/0.05,0)*0.05

    Slightly shorter
    =mround(a1,0.05) for analysis tool pack

    note not exactly what OP asked for as 0.38 gives 0.40 not ending in 5

    cheers RES


  6. #6
    JE McGimpsey
    Guest

    Re: Ending In 5

    Using this formula, half the numbers won't end in 5.

    Given the examples, either

    =ROUNDDOWN(A1,1)+0.05

    or

    =ROUNDUP(A1,1)+0.05

    would be better, depending on whether a value like 3.40 should round to
    3.35 or 3.45, respectively.



    In article <eaoea4JbFHA.2416@TK2MSFTNGP09.phx.gbl>,
    "Biff" <biffinpitt@comcast.net> wrote:

    > Hi!
    >
    > Try this:
    >
    > =ROUND(A1/0.05,0)*0.05
    >
    > Biff
    >
    > "JR" <gaspower@aol.com> wrote in message
    > news:SgNpe.1436$bv7.732@newssvr21.news.prodigy.com...
    > > Hello,
    > >
    > > I have a column of numbers that end in many different numbers such as
    > > 7.66, 3.43 ect. I would like to make all the numbers to end in 5. Such as
    > > 7.65 and 3.45.
    > >
    > > Thanks JR,
    > >


  7. #7
    JR
    Guest

    Re: Ending In 5

    Thanks for all the help.


    "JR" <gaspower@aol.com> wrote in message
    news:SgNpe.1436$bv7.732@newssvr21.news.prodigy.com...
    > Hello,
    >
    > I have a column of numbers that end in many different numbers such as
    > 7.66, 3.43 ect. I would like to make all the numbers to end in 5. Such as
    > 7.65 and 3.45.
    >
    > Thanks JR,
    >




  8. #8
    Biff
    Guest

    Re: Ending In 5

    My suggestion is intentional.

    I was, dare I say it, assuming that's what the OP wanted!

    Biff

    "JE McGimpsey" <jemcgimpsey@mvps.org> wrote in message
    news:jemcgimpsey-DFFDE7.06204209062005@msnews.microsoft.com...
    > Using this formula, half the numbers won't end in 5.
    >
    > Given the examples, either
    >
    > =ROUNDDOWN(A1,1)+0.05
    >
    > or
    >
    > =ROUNDUP(A1,1)+0.05
    >
    > would be better, depending on whether a value like 3.40 should round to
    > 3.35 or 3.45, respectively.
    >
    >
    >
    > In article <eaoea4JbFHA.2416@TK2MSFTNGP09.phx.gbl>,
    > "Biff" <biffinpitt@comcast.net> wrote:
    >
    >> Hi!
    >>
    >> Try this:
    >>
    >> =ROUND(A1/0.05,0)*0.05
    >>
    >> Biff
    >>
    >> "JR" <gaspower@aol.com> wrote in message
    >> news:SgNpe.1436$bv7.732@newssvr21.news.prodigy.com...
    >> > Hello,
    >> >
    >> > I have a column of numbers that end in many different numbers such as
    >> > 7.66, 3.43 ect. I would like to make all the numbers to end in 5. Such
    >> > as
    >> > 7.65 and 3.45.
    >> >
    >> > Thanks JR,
    >> >




  9. #9
    JE McGimpsey
    Guest

    Re: Ending In 5

    Ah. I guess I just interpreted "I would like to make all the numbers to
    end in 5" literally.

    You may have been right, of course.

    My second solution had an error - the + should have been a -.

    In article <#49fPjWbFHA.464@TK2MSFTNGP15.phx.gbl>,
    "Biff" <biffinpitt@comcast.net> wrote:

    > My suggestion is intentional.
    >
    > I was, dare I say it, assuming that's what the OP wanted!


+ 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