My nemesis - IF statements that need to do a few things...

mickyd67

Board Regular
Joined
Jul 13, 2011
Messages
78
Office Version
  1. 365
Platform
  1. Windows
In this scenario I have

Cell I6: the total amount of an item shipped year to date

Cell J6: the forecast amount for the year

Cell K6: where you can enter an adjustment to your forecast in Cell J6 (i.e. + or -)

Cell L6: the difference between Cell J6 & Cell K6

= = =

In Cell M6 I want it to return a status:

So far I have

=IF(L6<0,"Demand Reduction",IF(L6>0,"Demand Increase","No Change"))

However - I also want the formula to look at Cell I6 and return an alert to say "Your Demand Cannot be Below Shipments YTD"

Not sure how I do that - can you help, please? :)
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
However - I also want the formula to look at Cell I6 and return an alert to say "Your Demand Cannot be Below Shipments YTD"
I don't think you have clearly expressed where you want this to happen and when.
Are you trying to add it to the existing formula that you currently have, or do you want a new formula in a new cell?
If the same cell, what is the order of preference between this new condition and your existing ones?

I think it would probably be very helpful if you posted a few simple examples of your data, and show us your expected results in each case, being sure to represent each possible scenario.
 
Upvote 0
Hi Joe - thanks for the response. Let me try and make it clearer with the below image:


To answer your question: "Are you trying to add it to the existing formula that you currently have, or do you want a new formula in a new cell?"

Ideally, yes - it would mean the formula in Column N looking at the change in demand in Column L to return a status, but also look to ensure the data in Column K isn't below Column I

Excel Example.png


Does that help?
 
Upvote 0
So, you want the column K/I comparison to be the predominant one, it sounds like.
Then you just need to add another level of nesting to your current nested IF formula, like this:
Excel Formula:
=IF(K6<I6,"Your Demand Cannot be Below Shipments YTD",IF(L6<0,"Demand Reduction",IF(L6>0,"Demand Increase","No Change")))
 
Upvote 1
Solution
You are welcome.
Glad I was able to help!
 
Upvote 0

Forum statistics

Threads
1,221,607
Messages
6,160,773
Members
451,670
Latest member
Peaches000

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