Calculating a percentage and then rounding it up.

TheRadioBoy

New Member
Joined
Feb 19, 2018
Messages
7
Hello, newbie here - nice to be a part of the forum.

Could someone please help?

I am trying to calculate two fields together (to get a price) and then wish to add on 20% to that and round it to the nearest fifty, for instance £837.60 to £850.00, is this possible please?

I seem to remember using the CEILING funtion for this perviously.

Any help you can give would be greatly appreciated!

Regards,
Rob.
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Hi, welcome to the board.

Let's assume your "two fields" are in A1 and A2, and the 20% is in A3, entered as 20.

If you ALWAYS want to ROUND UP (and never round down, for example £800.01 also becomes £850.00) then CEILING can do this, as follows

=CEILING((A1*A2)*(1+A3/100),50)


You can also make the 50 a variable, like this

=CEILING((A1*A2)*(1+A3/100),A4)
 
Upvote 0

Forum statistics

Threads
1,215,110
Messages
6,123,143
Members
449,098
Latest member
Doanvanhieu

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