Add Roundup to existing formula

Lainbow

New Member
Joined
Oct 6, 2023
Messages
4
Office Version
  1. 365
Platform
  1. Windows
Help a basic Excel user! :)

Can someone please give me the formula to add ROUNDUP to this existing formula =SUM('A1 2-Bed Hot Tub'!F84*110%)
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Welcome to the forum,

Try:
Excel Formula:
=ROUNDUP(SUM('A1 2-Bed Hot Tub'!F84*110%),0)

The zero at the end denotes how many digits to round to, zero will return a whole number.
 
Upvote 0
Thank you for your reply Georgiboy.

I tried that but now I am getting the #REF! error
 
Upvote 0
What does your original formula display?:
Excel Formula:
=SUM('A1 2-Bed Hot Tub'!F84*110%)

That error seems to point out that excel can't find the range: 'A1 2-Bed Hot Tub'!F84

You could try constructing the formula again and selecting the cell on the other sheet. Then wrap your formula in the ROUNDUP the same way i did.
 
Upvote 0
Does you original formula return a value or a #REF! error?
Excel Formula:
=SUM('A1 2-Bed Hot Tub'!F84*110%)

If it returns a #REF! error, then the error is probably with your sheet name reference. You may want to double-check that to make sure you have that right.

Since you are only referencing one cell, I don't think the SUM function serves any purpose. So you should be able to just use:
Excel Formula:
=ROUNDUP('A1 2-Bed Hot Tub'!F84*110%,0)
If that returns an error, please confirm what is in cell F84 there.
Is it a valid numeric entry?

What does the following formula return?
Excel Formula:
=ISNUMBER('A1 2-Bed Hot Tub'!F84)
 
Upvote 0
The =SUM('A1 2-Bed Hot Tub'!F84*110%) formula entered into the cell returns a value.

Basically I am trying to use Sheet A1 to input my base rates. Sheet A1 - F84 contains the value £465.00. I used the above formula to add 10% for the same cell in Sheet A2. As this now takes the value to £511.50 I would like to round it up.

I have tried....

=ROUNDUP('A1 2-Bed Hot Tub'!F84*110%,0) and get the #REF! Error

=ISNUMBER('A1 2-Bed Hot Tub'!F84) and get the FALSE Error.

Sorry for my lack of knowledge. :sneaky:
 
Upvote 0
=ISNUMBER('A1 2-Bed Hot Tub'!F84) and get the FALSE Error.
That is NOT an error.
What that is telling your is that your value enter in cell F84 is NOT a valid number!
It may be a number entered as text.

What exactly is in this cell? Can you show us an example?
Where exactly is this value in cell F84 coming from?
Is it the result of a formula? Is it imported? Is it manually entered?

If it is the result of a formula, please post that formula.
 
Upvote 0

Forum statistics

Threads
1,215,261
Messages
6,123,939
Members
449,134
Latest member
NickWBA

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