roundup formula

Kiwi den

Board Regular
Joined
Feb 17, 2014
Messages
143
Office Version
  1. 365
Platform
  1. Windows
I am trying to use a formula within a cell and want the answer rounded up

=ROUNDUP((235*25%)+235,0) THIS DOES NOT WORK

ANY THOUGHTS
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
What does "this does not work" mean?
Wrong answer?
No answer?
something else?

What were you expecting and what did you get?
I got 294.0
 
Upvote 0
In this case the ROUNDUP value is the same as the rounded result, because the intermediate value of 235 * 25% is 58.75, and the argument to the ROUNDUP function is 293.75.
Try:
ROUNDUP((233*25%)+233,0), which results in 292, while the normal ROUND function yields 291
 
Upvote 0
=ROUNDUP((D456*25%)+D456),0)

THIS IS THE FORMULA IN THE CELL.. WHEN SELECTED, EXCEL TELLS ME THERE IS AN ERROR IN THE CALCULATION

sorry for caps
 
Upvote 0
Remove that 2nd-last )
=ROUNDUP((D456*25%)+D456,0)

You did not answer my questions?
 
Upvote 0
You've got one too many right-parens. Try
=ROUNDUP((D456*25%) + D456, 0)
note no right-parenthesis after the second reference to D456
 
Last edited:
Upvote 0
=roundup(D456*25%)+D456,0) this still returns an error message, to few arguments...

D456=230 i would like 288 as answer
 
Upvote 0
=ROUNDUP((D456*25%) + D456, 0) this returns an error message "the formula you typed contains an error"
the BOLD section is highlighted
 
Upvote 0

Forum statistics

Threads
1,216,050
Messages
6,128,498
Members
449,455
Latest member
jesski

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top