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

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
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,215,507
Messages
6,125,212
Members
449,214
Latest member
mr_ordinaryboy

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