Adding Rounding to This Formula

ExcelBean

New Member
Joined
Apr 4, 2014
Messages
36
Everything I've tried is not working. Can you add, if the value is greater than $200 then round, to this formula?

=IF(E4<=15,E4*2,IF(E4<=50,E4*1.95,IF(E4<=100,E4*1.9,IF(E4<=300,E4*1.85,IF(E4<=500,E4*1.8,IF(E4<=1000,E4*1.75,IF(E4<10000000,E4*1.7)))))))*1.06

Thank you in advance!
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
What version of Excel do you have? Later versions will have a different solution. (I recommend you add it to your profile.)

Excel Formula:
=LET(x,1.06*E4*LOOKUP(E4-1,{0,15,50,100,300,500,1000,9999999},{2,1.95,1.9,1.85,1.8,1.75,1.7,0}),IF(x>200,ROUND(x,0),x))

What should happen when E4>=10000000?
 
Upvote 0

Forum statistics

Threads
1,216,057
Messages
6,128,523
Members
449,456
Latest member
SammMcCandless

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