Rounding the sum of numbers

mattio

New member
Joined
Dec 12, 2011
Messages
1
Reaction score
0
Points
0
ok, I am very new to this. and I am looking for some help with a formula.

I am creating a sales sheet, used for the purpose of giving customers a delivered cost. But I would like to be able to round up to the nearest interval of .05 cents. As an Example:

Cost Freight Brokerage Delivered
10.00 4.17 .35 14.52

i would like to know how to create the formula, so that the price will automatically round up to the next .05 increment.

My work sheet has the formulas for the sums, and then directly related to my quote sheet which gets faxed out. I added my work sheet, and if you look at page (Greens Calculator) I highlighted cells F2 & F3 to demonstrate. Should you look at the page (Price Sheet) all the delivered prices are the same.

I hope I have explained this, and that somebody can give me a quick answer.

Regards,

Mattio
 

Attachments

  • price Calculator.xlsx
    51.8 KB · Views: 23
Hi there,

Try this in F3: =MROUND(SUM(B3+D3+E3),0.05)

Just be warned that if you try and send this to a user running Excel 2003, they'll see a #NAME? error if they haven't activated the Analysis Toolpack. (Easy to fix though, just get them to go to Tools-->Addins and check "Analysis Toolpack")

Hope it helps,
 
Hi,
As mattio want to round up to the next 0.05 increment,
Try this in F3: =CEILING(SUM(B3+D3+E3),0.05)
"MROUND rounds up, away from zero, if the remainder of dividing number by multiple is greater than or equal to half the value of multiple."
Best regards
 
I generally do something like this:

=ROUND(SUM(B3,D3,E3)*2,1)/2

Jesse
 
Back
Top