Hi All,
I am trying to create a formula (assuming a combo of if/or is the way to go), but keep getting "incorrect argument set. They work independently, but not when I combine them. I basically want to search for either of the following in a cell and then return a value.
Look for any of the following in one column:
- Content/Social Media - e.g. blog, press releases, and video broadcasts
- Technical Writing/Documentation
- Graphic Design - e.g. UX, swag, and logos
- Video Production
- Website - e.g. design and content
And if any of those options are found then return "Content creation" into a different column same row.
These is the formula I am using: =IF(OR(Topic@row = "Technical Writing/Documentation", Topic@row = "Content/Social Media - e.g. blog, press releases, and video broadcasts", "Content creation"))
If I enter them as separate if statements it works fine and is blank if it's not found.
I was using this as my starting point, but I really want to have it query for multiple things. The above is the example for Content creation. I also want the formula to look for the following and return "Community Essentials + Infrastructure"
- Project Health Metrics
- Infrastructure Support
- Managed Hosting
- SysAdmin
Am I trying to do to much? Any ideas on how to accomplish this?