Combining the ROUND & SUM function

thirdeye85

New Member
Joined
Aug 11, 2021
Messages
28
Office Version
  1. 2019
Platform
  1. MacOS
Hello,

I have a question about combining the ROUND function and SUM function.

I understand that the ROUND function works like this:

=ROUND(E10,1) This would round up a decimal place of cell E10.

And a SUM function can work like this.

=SUM(E10*.10) What this function does is multiplies my E10 cell by .10

I would like to combine both of these into one formula and the best i can come up with is below (which does not work).

=SUM(E10*0.10)(ROUND(E10,1))

Basically, I would like to create a function which multiplies the E10 cell by .10 and then rounds up that calculated value.

Thank you for your help!
 

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
Welcome to the Board!

Try:
Excel Formula:
=ROUND(E10*0.1,1)
The SUM function serves no purpose here, as you are only working with one cell.
The SUM function is used on a multi-cell range.

Also, not that ROUND does not necessarily Round Up, it could Rown Down too.
 
Upvote 0
Solution
You are welcome.
Glad we were able to help!
 
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,289
Members
452,631
Latest member
a_potato

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