HELP WITH IF THAN GREATER THAN, MULTIPLE SCENARIOS

Meanes1992

New Member
Joined
May 31, 2022
Messages
4
Office Version
  1. 365
  2. 2021
Platform
  1. Windows
I am really struggling with the formulas for one particular cell.

What i'm looking for is the value in B17 will be determined as Followed. I'm hoping someone can help my brain wrap around this

IF b15 is less than 50, then b19= "Product A"
IF b15 is greater than 50, and less than 250, then b19= "product B"
IF B15 is greater than 250, then b19 = "Product C"

if C16 is YES, then b19 = "product D"
IF C17 is YES, then b19 = "Product E"

Is this even feasible?
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Hi & welcome to MrExcel.
At what point does the criteria re C16 & C17 kick in?
 
Upvote 0
Hi & welcome to MrExcel.
At what point does the criteria re C16 & C17 kick in?
C16 and C17 should have priority over the B15. Truthfully i'm okay removing the C16 & C17 portion of this.
Rather i just need to be able to put the following into one formula.

=IF(AND(B15>50,B15<250),"Simply Business 250")

=IF(B15<50,"Simply Business 50")

=IF(B15>250, “Simply Business 500”)
 
Upvote 0
Ok, how about
Excel Formula:
=IF(B15<50,"A",IF(B15<250,"B","C"))
 
Upvote 0
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,013
Messages
6,122,690
Members
449,092
Latest member
snoom82

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