IF function for between 2 numbers

AFawcus123

New Member
Joined
Jul 31, 2024
Messages
6
Office Version
  1. 365
Platform
  1. Windows
I'm having a hard time getting this one right. I've tried IF function and AND w/ MIN & MAX but it's giving me the results I need.
Lets call the reference cell A5 this is the invoice amount for the customer.
And we'll call the results cell A6 this will hold the shipping cost for the customer.
If A5 is 0 then I need A6 to also be 0 or blank
If A5 is between 1 & 349 I need A6 to be $25
If A5 is $350 or higher I need A6 to be 0

Anyone want to take a stab at this?
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Another way (though I like hagia_sofia's IFS solution 👍):

Excel Formula:
=IF(OR(A5=0,A5>=350),0,IF(AND(A5>=1,A5<=349),25,0))
 
Upvote 0
Other variations could be
Excel Formula:
=25*(MEDIAN(1,A5,349)=A5)
Excel Formula:
=25*(A5>=1)*(A5<=349)
 
Upvote 0

Forum statistics

Threads
1,221,588
Messages
6,160,654
Members
451,662
Latest member
reelspike

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