Rounding Formula

dkflameboy

New Member
Joined
Nov 28, 2016
Messages
22
Office Version
  1. 365
Dear All,

I have the following formula that needs to ROUND the resulting sum.

When I try to ROUND it i get the error "you've entered too few arguments for this function" and I can't figure out where I need to include the ROUND function.

=(SUM((((C13+D13+E13+F13)/2)+B13)/2))

Please help.

Many thanks
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
First off, you don't use SUM and + on the same range, that is redundant!
Use one or the other, i.e.
Code:
SUM(C13:F13)
or
Code:
(C13+D13+E13+F13)
but NOT both (like this):
Code:
SUM(C13+D13+E13+F13)

With the ROUND function, there are two arguments - what you want to ROUND, and how many decimal places that you want to round it to (see: https://www.techonthenet.com/excel/formulas/round.php)

So if you have a calculation that you want to round, it would be of the structure (this example rounds to 2 decimal places):
Code:
=ROUND(calculation,2)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,514
Messages
6,131,105
Members
449,618
Latest member
lewismillar

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