Forum Discussion
If functions
Looking for a formula that can say 'if A plus B happens take action X, but if A and C instead happens then take action Y'. Is that possible in Excel?
9 Replies
- NikolinoDEPlatinum Contributor
If you want to control values in A, B and C then this would be a simple solution.
Example in the inserted file
Thank you for your patience and time.
Nikolino
I know I don't know anything (Socrates)
- NikolinoDEPlatinum Contributor
Please help me, I'm a little irritated by your request.
You would like to know if A plus B happens take action X, but if A and C instead happens then take action Y '.
What should happen if A plus B and A and C appear at the same time?
Wouldn't it help if only A was searched for a certain value?Thank you for your patience and time.
Nikolino
I know I don't know anything (Socrates)
- Riny_van_EekelenPlatinum Contributor
Sofia2165 What do you mean by "happens"? IF A and B contain a certain value, or IF A + B add up to a certain value? Or perhaps IF both A and B are not blank/empty?
- Sofia2165Copper ContributorHi Riny
A and B are not values nor blank. I'm basically trying to say that if two particular criteria are met (A and B) then the required action should be X. Neither the criteria nor the action is numeric values.
Example:
Blue + Yellow is Green, but Blue + Red is purple.- Yea_SoBronze ContributorIF(AND(A=TRUE,B=TRUE), DoThisAction, DoThatAction)
IF(AND(A=5,B=5), x*y, x-y)