IF/OR Functions
=IF(OR(AND([Column2]@row = "yellow", [Column4]@row <> ""), IF(AND([Column2]@row = "green", [Column4]@row <> ""))), true)
Hi everyone,
I want my column to be checked, when either yellow or green is appeared in [Column2] and when [Column4] is empty in both cases.
Can someone tell me what I am doing wrong?
Thanks!
Aspa
Best Answer
-
Hi Aspasia! Looks like the order of your or/and might need some adjustment. Try giving this a shot!
=IF(AND(ISBLANK([Column4]@row), OR([Column2]@row = "Green", [Column2]@row = "Yellow")), 1, 0)
Answers
-
Hi Aspasia! Looks like the order of your or/and might need some adjustment. Try giving this a shot!
=IF(AND(ISBLANK([Column4]@row), OR([Column2]@row = "Green", [Column2]@row = "Yellow")), 1, 0)
-
Hi cmondo,
Thant worked perfectly, it is exactly what I was looking for!
Thank you so much!
Aspasia
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!