Roundup within an IF statement after a condition is met.

Marshal_au

New Member
Joined
May 26, 2019
Messages
2
Hi Everyone,
I'm new to this group and not well trained with Excel, I've spent my morning looking at formulas trying to find the solution.
Here is the formula I have written, which works. I need to show a value of 7 if Z2 is less than 0.5, but I need it to roundup Z2 to the next whole number, if its greater than 0.51.
The rounding needs to happen before its multiplied by 1.89 as it is a freight charge per KG.

=IF(Z2<=0.5,"7",(Z2*1.89)+11.52)

If this can't be done, Z2 is currently =MAX(R2,S2)
Is it possible to have this cell roundup if the result is greater than 0.51?

Thanks in advance.
Marshal J.
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Maybe this

Code:
=IF(Z2<=0.5,7,ROUNDUP(Z2,)*1.89+11.52)
 
Upvote 0
glad to help...and thx for the feedback..(y)
 
Upvote 0

Forum statistics

Threads
1,214,991
Messages
6,122,628
Members
449,095
Latest member
bsb1122

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