Round Up To Nearest X`

  • Hello. First post here. I trying to make a formula that will multiply a cell by 1.43 and then round the total up to the nearest 45 or 95 with no decimal points. Any help would be greatly appreciated.

  • Re: Round Up To Nearest 45 Or 95


    That doesn't seem to be working. It just rounds it to the nearest multiple of ten. I think i'm a little further along now though. This will round to 95 everytime...
    =ROUNDUP((C2*1.25),-2)-5
    Now I just need to find out how to add the round to 45 in there.

  • Re: Round Up To Nearest 45 Or 95


    Datzneat,


    Please do not add code tags to formulas. You can if you like add formula tags like this (new feature of website:


    [noparse][f]=roundup (c2, -2) -5[/f][/noparse]


    gives


    [f]=roundup (c2, -2) -5[/f]

  • Re: Round Up To Nearest 45 Or 95


    [COLOR="Blue"][noparse]= Min( Roundup( A1 * 1.43 / 45, 0) * 45, Roundup( A1 * 1.43 / 95, 0) * 95)[/noparse][/COLOR]

    [SIZE=1]Entia non sunt multiplicanda sine necessitate.[/SIZE]

  • Re: Round Up To Nearest 45 Or 95


    Yea i'm still seeing the wrong numbers with these. It should only be coming up with numbers that end in 45 or 95.
    ie.
    11 would be 45
    32 would be 45


    46 would be 95
    1865 would be 1895


    and so forth.

  • Re: Round Up To Nearest 45 Or 95


    Quote from datzneat

    11 would be 45
    32 would be 45
    46 would be 95
    1865 would be 1895

    That's incorrect.


    11 * 1.43 = 15.73, rounded up to multiple of 45 is 45, to 95 is 95, smaller is 45
    32 * 1.43 = 45.76, rounded up to multiple of 45 is 90, to 95 is 95, smaller is 90
    46 * 1.43 = 65.78, rounded up to multiple of 45 is 90, to 95 is 95, smaller is 90
    1896 * 1.43 = 2711.28, rounded up to multiple of 45 is 2745, to 95 is 2755, smaller is 2745

    [SIZE=1]Entia non sunt multiplicanda sine necessitate.[/SIZE]

  • Re: Round Up To Nearest 45 Or 95


    I don't get what you're saying shg... those were just examples of what i need the numbers to round to, all multiplying aside.


    The problem with that code Jim is that it isn't just one code. It is multiple codes, and i'm not sure if rounddown is the best way to do it...


    Is there a way to work an OR statement into : =ROUNDUP((C2*1.25),-2)-5

  • Re: Round Up To Nearest 45 Or 95


    Hi shg,


    I think OP is still struggling with how to say what they want. I don't think they meant a "multiple", just something else.


    Jim

  • Re: Round Up To Nearest 45 Or 95


    Datzneat, is what you mean that the number * 1.43 should be rounded up to the nearest number ending in 45 or 95?

    [SIZE=1]Entia non sunt multiplicanda sine necessitate.[/SIZE]

  • Re: Round Up To Nearest 45 Or 95


    See if this gives the results you expect:


    [COLOR="Blue"]= 1.43 * A1- MOD( 1.43 * A1, 100) + IF( MOD( 1.43 * A1, 100) > 45, 95, 45 )[/COLOR]

    [SIZE=1]Entia non sunt multiplicanda sine necessitate.[/SIZE]

  • Re: Round Up To Nearest 45 Or 95


    Looks damn good to me. It's sad how close I was to getting that same formula. Thanks everyone.


    EDIT: Sorry. Krish's worked. I'll still check out the one you gave me shg.

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!