Having Trouble with simple IF OR formula
I've been reading previous questions and answers on this topic. I'm trying to enter a yes or no in a Licensed in a State? column if any of three columns contains a yes. Below is yielding UNPARSEABLE.
=IF(OR[BrokerageLicense?]@row="yes",[Property Management Licensed?]@row="yes",[Multifamily Licensed?]@row="yes")),"Yes","No")
Best Answer
-
Hi Mary Anne Dunn.
Looks like placement of parentheses is preventing the formula from being parsed: missing opening parenthesis of the OR function, extra parenthesis at end of the OR function. You have 1 opening parenthesis and 3 closing parenthesis.
I tested this formula below and it worked for me. Hope this helps!
=IF(OR([BrokerageLicense?]@row = "yes", [Property Management Licensed?]@row = "yes", [Multifamily Licensed?]@row = "yes"), "Yes", "No")
Answers
-
@Mary Anne Dunn Hi, it's missing a parenthesis after the OR and it had an extra one before the yes condition. Try this: =IF(OR([BrokerageLicense?]@row = "yes", [Property Management Licensed?]@row = "yes", [Multifamily Licensed?]@row = "yes"), "Yes", "No")
-
Hi Mary Anne Dunn.
Looks like placement of parentheses is preventing the formula from being parsed: missing opening parenthesis of the OR function, extra parenthesis at end of the OR function. You have 1 opening parenthesis and 3 closing parenthesis.
I tested this formula below and it worked for me. Hope this helps!
=IF(OR([BrokerageLicense?]@row = "yes", [Property Management Licensed?]@row = "yes", [Multifamily Licensed?]@row = "yes"), "Yes", "No")
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.6K Get Help
- 403 Global Discussions
- 215 Industry Talk
- 455 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 136 Just for fun
- 56 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 296 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!