If/Or Formula
Hi there,
I need assistance on this formula: =IF(OR([ Company’s intellectual property Co-owned]@row = "No", [ Company’s intellectual property Co-owned]@row = "Unsure"), [First Name]@row + [Last Name]@row + " knows or believes that none of " + [Name of Company]@row + " is co-owned by another person or entity.", IF([ Company’s intellectual property Co-owned]@row = "Yes" + [By whom?]@row + " is the co-owner of the Company’s intellectual property. Note to reading attorney: If the contract for co-ownership was not provided by the client, ask for it directly.", ""))
Note: The first part of the logic " No" or " Unsure" are populating correctly into the column, but
" Yes" is not.
Output Information
If Company’s intellectual property Co-owned= No or Unsure, then show below:
[First Name] [Last Name] knows or believes that none of [Name of Company] is co-owned by another person or entity.
If Company’s intellectual property Co-owned = Yes, then show below:
[By whom?] is the co-owner of the Company’s intellectual property.
Best Answer
-
Hi @Brittanyy
I spotted a couple of issues in trying to resolve the actual issue, as follows:
- I don't think you should have spaces at the start of the Column Name. I tried to name a column with a space at the start and it didn't work for me.
- Where you join [First Name]@row + [Last Name]@row, unless you have it handled in the data, you probably want to put a space between them, like[First Name]@row + " " + [Last Name]@row
- The actual question you had!
See the part in bold
IF(OR([ Company’s intellectual property Co-owned]@row = "No", [ Company’s intellectual property Co-owned]@row = "Unsure"), [First Name]@row + [Last Name]@row + " knows or believes that none of " + [Name of Company]@row + " is co-owned by another person or entity.", IF([ Company’s intellectual property Co-owned]@row = "Yes" + [By whom?]@row + " is the co-owner of the Company’s intellectual property. Note to reading attorney: If the contract for co-ownership was not provided by the client, ask for it directly.", ""))
It should be "Yes", [By Whom?]@row
(comma not +)
Conclusion
Here is the full formula with the 3 changes I suggested, in color so it is easy to see
And as text to copy/paste
=IF(OR([Company’s intellectual property Co-owned]@row = "No", [Company’s intellectual property Co-owned]@row = "Unsure"), [First Name]@row + " " + [Last Name]@row + " knows or believes that none of " + [Name of Company]@row + " is co-owned by another person or entity.", IF([Company’s intellectual property Co-owned]@row = "Yes", [By Whom?]@row + " is the co-owner of the Company’s intellectual property. Note to reading attorney: If the contract for co-ownership was not provided by the client, ask for it directly.", ""))
And here is the output
Answers
-
Hi @Brittanyy
I spotted a couple of issues in trying to resolve the actual issue, as follows:
- I don't think you should have spaces at the start of the Column Name. I tried to name a column with a space at the start and it didn't work for me.
- Where you join [First Name]@row + [Last Name]@row, unless you have it handled in the data, you probably want to put a space between them, like[First Name]@row + " " + [Last Name]@row
- The actual question you had!
See the part in bold
IF(OR([ Company’s intellectual property Co-owned]@row = "No", [ Company’s intellectual property Co-owned]@row = "Unsure"), [First Name]@row + [Last Name]@row + " knows or believes that none of " + [Name of Company]@row + " is co-owned by another person or entity.", IF([ Company’s intellectual property Co-owned]@row = "Yes" + [By whom?]@row + " is the co-owner of the Company’s intellectual property. Note to reading attorney: If the contract for co-ownership was not provided by the client, ask for it directly.", ""))
It should be "Yes", [By Whom?]@row
(comma not +)
Conclusion
Here is the full formula with the 3 changes I suggested, in color so it is easy to see
And as text to copy/paste
=IF(OR([Company’s intellectual property Co-owned]@row = "No", [Company’s intellectual property Co-owned]@row = "Unsure"), [First Name]@row + " " + [Last Name]@row + " knows or believes that none of " + [Name of Company]@row + " is co-owned by another person or entity.", IF([Company’s intellectual property Co-owned]@row = "Yes", [By Whom?]@row + " is the co-owner of the Company’s intellectual property. Note to reading attorney: If the contract for co-ownership was not provided by the client, ask for it directly.", ""))
And here is the output
-
@KPH This worked. Thank you so much for the thorough explanation.
-
Great news @Brittanyy! Glad we got that sorted for you.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 142 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!