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
- 65.9K Get Help
- 429 Global Discussions
- 147 Industry Talk
- 487 Announcements
- 5.2K Ideas & Feature Requests
- 86 Brandfolder
- 151 Just for fun
- 74 Community Job Board
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 305 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!