A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
I believe this worked! Thank you so much!
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have a complex IF statement that I need assistance with. I need to combine the following into logic for one cell. I was going to try using IFS but I haven't been able to make IFS AND work together:
=IF(AND(G14<=2,L14<=2),"Quadrant 3")
=IF(AND(G14<=2,L14<=4),"Quadrant 2")
=IF(AND(G14<=4,L14<=2),"Quadrant 4")
=IF(AND(G14<=4,L<=4),"Quadrant 1")
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
I believe this worked! Thank you so much!
Hi BSims21,
Try this formula:
=IF((G14<=2)*(L14<=2),"Quadrant 3", IF((G14<=2)*(L14<=4),"Quadrant 2", IF((G14<=4)*(L14<=2),"Quadrant 4", IF((G14<=4)*(L14<=4),"Quadrant 1","doesn't exist"))))
If criteria are not met, then formula return doesn't exist. You can change it, if you want.
Hope this helps.
This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.
Comments have been turned off. Learn more
Hi,
Try this
=if(G14<=2,if(L14<=2,"Quadrant 3","Quadrant 4"),if(L14<=2,"Quadrant 4","Quadrant 1"))
Hi BSims21,
Thank you for posting your query. My name is Clarence, I'll be more than happy to assist you with your concern.
To resolve your query kindly do the steps below.
Use the IF function along with AND, OR and NOT to perform multiple evaluations if conditions are True or False.
Syntax
IF(AND()) - IF(AND(logical1, [logical2], ...), value_if_true, [value_if_false]))
IF(OR()) - IF(OR(logical1, [logical2], ...), value_if_true, [value_if_false]))
IF(NOT()) - IF(NOT(logical1), value_if_true, [value_if_false]))
Go to this link for your reference and other troubleshooting procedures https://support.microsoft.com/help/d895f58c-b36c-419e-b1f2-5c193a236d97
Do not hesitate to message us if you need further assistance.
Give back to the Community. Help the next person who has this issue by indicating if this reply solved your problem. Click Yes or No below.
Best Regards, Clarence