+ Reply to Thread
Results 1 to 13 of 13

How do I round to the nearest $250

  1. #1
    aristotle
    Guest

    RE: How do I round to the nearest $250

    Hi,

    You can use the MROUND() function within the morefunc addin to do this:
    http://xcell05.free.fr/english/
    Use this link to download the add-in.

    Regards,
    A

    "Dedrie" wrote:

    > I'm working on life insurance policy calculations and the policies are 4 time
    > annual salary to the nearest $250. Is there a formula I can use to do the
    > calculation?
    >
    > So someone with $43,300 annual salary would get $173,250 in benefit - 43,000
    > * 4 = $173,200 neareast $250 is $173,250.
    >
    > Thanks!
    > Dedrie


  2. #2
    Dedrie
    Guest

    RE: How do I round to the nearest $250

    I downloaded, but I'm still not sure what to do.

    "aristotle" wrote:

    > Hi,
    >
    > You can use the MROUND() function within the morefunc addin to do this:
    > http://xcell05.free.fr/english/
    > Use this link to download the add-in.
    >
    > Regards,
    > A
    >
    > "Dedrie" wrote:
    >
    > > I'm working on life insurance policy calculations and the policies are 4 time
    > > annual salary to the nearest $250. Is there a formula I can use to do the
    > > calculation?
    > >
    > > So someone with $43,300 annual salary would get $173,250 in benefit - 43,000
    > > * 4 = $173,200 neareast $250 is $173,250.
    > >
    > > Thanks!
    > > Dedrie


  3. #3
    Ron Coderre
    Guest

    RE: How do I round to the nearest $250

    Try this:

    =ROUND((A1*4)/250,0)*250

    If A1=43300 the return is 173250.

    Does that help?
    --
    Regards,
    Ron


    "Dedrie" wrote:

    > I'm working on life insurance policy calculations and the policies are 4 time
    > annual salary to the nearest $250. Is there a formula I can use to do the
    > calculation?
    >
    > So someone with $43,300 annual salary would get $173,250 in benefit - 43,000
    > * 4 = $173,200 neareast $250 is $173,250.
    >
    > Thanks!
    > Dedrie


  4. #4
    Dedrie
    Guest

    RE: How do I round to the nearest $250

    Yes thank you that worked!

    "Ron Coderre" wrote:

    > Try this:
    >
    > =ROUND((A1*4)/250,0)*250
    >
    > If A1=43300 the return is 173250.
    >
    > Does that help?
    > --
    > Regards,
    > Ron
    >
    >
    > "Dedrie" wrote:
    >
    > > I'm working on life insurance policy calculations and the policies are 4 time
    > > annual salary to the nearest $250. Is there a formula I can use to do the
    > > calculation?
    > >
    > > So someone with $43,300 annual salary would get $173,250 in benefit - 43,000
    > > * 4 = $173,200 neareast $250 is $173,250.
    > >
    > > Thanks!
    > > Dedrie


  5. #5
    aristotle
    Guest

    RE: How do I round to the nearest $250

    Hi,

    You can use the MROUND() function within the morefunc addin to do this:
    http://xcell05.free.fr/english/
    Use this link to download the add-in.

    Regards,
    A

    "Dedrie" wrote:

    > I'm working on life insurance policy calculations and the policies are 4 time
    > annual salary to the nearest $250. Is there a formula I can use to do the
    > calculation?
    >
    > So someone with $43,300 annual salary would get $173,250 in benefit - 43,000
    > * 4 = $173,200 neareast $250 is $173,250.
    >
    > Thanks!
    > Dedrie


  6. #6
    Dedrie
    Guest

    RE: How do I round to the nearest $250

    I downloaded, but I'm still not sure what to do.

    "aristotle" wrote:

    > Hi,
    >
    > You can use the MROUND() function within the morefunc addin to do this:
    > http://xcell05.free.fr/english/
    > Use this link to download the add-in.
    >
    > Regards,
    > A
    >
    > "Dedrie" wrote:
    >
    > > I'm working on life insurance policy calculations and the policies are 4 time
    > > annual salary to the nearest $250. Is there a formula I can use to do the
    > > calculation?
    > >
    > > So someone with $43,300 annual salary would get $173,250 in benefit - 43,000
    > > * 4 = $173,200 neareast $250 is $173,250.
    > >
    > > Thanks!
    > > Dedrie


  7. #7
    Ron Coderre
    Guest

    RE: How do I round to the nearest $250

    Try this:

    =ROUND((A1*4)/250,0)*250

    If A1=43300 the return is 173250.

    Does that help?
    --
    Regards,
    Ron


    "Dedrie" wrote:

    > I'm working on life insurance policy calculations and the policies are 4 time
    > annual salary to the nearest $250. Is there a formula I can use to do the
    > calculation?
    >
    > So someone with $43,300 annual salary would get $173,250 in benefit - 43,000
    > * 4 = $173,200 neareast $250 is $173,250.
    >
    > Thanks!
    > Dedrie


  8. #8
    Dedrie
    Guest

    RE: How do I round to the nearest $250

    Yes thank you that worked!

    "Ron Coderre" wrote:

    > Try this:
    >
    > =ROUND((A1*4)/250,0)*250
    >
    > If A1=43300 the return is 173250.
    >
    > Does that help?
    > --
    > Regards,
    > Ron
    >
    >
    > "Dedrie" wrote:
    >
    > > I'm working on life insurance policy calculations and the policies are 4 time
    > > annual salary to the nearest $250. Is there a formula I can use to do the
    > > calculation?
    > >
    > > So someone with $43,300 annual salary would get $173,250 in benefit - 43,000
    > > * 4 = $173,200 neareast $250 is $173,250.
    > >
    > > Thanks!
    > > Dedrie


  9. #9
    Dedrie
    Guest

    How do I round to the nearest $250

    I'm working on life insurance policy calculations and the policies are 4 time
    annual salary to the nearest $250. Is there a formula I can use to do the
    calculation?

    So someone with $43,300 annual salary would get $173,250 in benefit - 43,000
    * 4 = $173,200 neareast $250 is $173,250.

    Thanks!
    Dedrie

  10. #10
    aristotle
    Guest

    RE: How do I round to the nearest $250

    Hi,

    You can use the MROUND() function within the morefunc addin to do this:
    http://xcell05.free.fr/english/
    Use this link to download the add-in.

    Regards,
    A

    "Dedrie" wrote:

    > I'm working on life insurance policy calculations and the policies are 4 time
    > annual salary to the nearest $250. Is there a formula I can use to do the
    > calculation?
    >
    > So someone with $43,300 annual salary would get $173,250 in benefit - 43,000
    > * 4 = $173,200 neareast $250 is $173,250.
    >
    > Thanks!
    > Dedrie


  11. #11
    Dedrie
    Guest

    RE: How do I round to the nearest $250

    I downloaded, but I'm still not sure what to do.

    "aristotle" wrote:

    > Hi,
    >
    > You can use the MROUND() function within the morefunc addin to do this:
    > http://xcell05.free.fr/english/
    > Use this link to download the add-in.
    >
    > Regards,
    > A
    >
    > "Dedrie" wrote:
    >
    > > I'm working on life insurance policy calculations and the policies are 4 time
    > > annual salary to the nearest $250. Is there a formula I can use to do the
    > > calculation?
    > >
    > > So someone with $43,300 annual salary would get $173,250 in benefit - 43,000
    > > * 4 = $173,200 neareast $250 is $173,250.
    > >
    > > Thanks!
    > > Dedrie


  12. #12
    Ron Coderre
    Guest

    RE: How do I round to the nearest $250

    Try this:

    =ROUND((A1*4)/250,0)*250

    If A1=43300 the return is 173250.

    Does that help?
    --
    Regards,
    Ron


    "Dedrie" wrote:

    > I'm working on life insurance policy calculations and the policies are 4 time
    > annual salary to the nearest $250. Is there a formula I can use to do the
    > calculation?
    >
    > So someone with $43,300 annual salary would get $173,250 in benefit - 43,000
    > * 4 = $173,200 neareast $250 is $173,250.
    >
    > Thanks!
    > Dedrie


  13. #13
    Dedrie
    Guest

    RE: How do I round to the nearest $250

    Yes thank you that worked!

    "Ron Coderre" wrote:

    > Try this:
    >
    > =ROUND((A1*4)/250,0)*250
    >
    > If A1=43300 the return is 173250.
    >
    > Does that help?
    > --
    > Regards,
    > Ron
    >
    >
    > "Dedrie" wrote:
    >
    > > I'm working on life insurance policy calculations and the policies are 4 time
    > > annual salary to the nearest $250. Is there a formula I can use to do the
    > > calculation?
    > >
    > > So someone with $43,300 annual salary would get $173,250 in benefit - 43,000
    > > * 4 = $173,200 neareast $250 is $173,250.
    > >
    > > Thanks!
    > > Dedrie


+ 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