I am using IF(ISBlank) and IF(Contains) together to automatically populate a a cell in one column from data in an adjacent cell/column, but the formula won't let me add any more combinations of the formula to complete this task for about 80 pieces of data. (The formula tops out at 61 in this scenario and won't let me add any more keystrokes.) I'm sure there's a cleaner, quicker solution, but I'm not a Smartsheet guru.
The scenario is:
Column A contains a contact list of ~600 names associated with their company (~80 companies) in this format: Last Name, First Name - Company Name. It is in a multi-select drop-down column. When a user selects a contact (or multiples), I want the Company Name to automatically populate into the adjacent cell in Column B.
This formula works:
=IF((ISBLANK([COLUMN A]@row)), "None", (IF(CONTAINS("Company Name",[COLUMN A]@row, "Company Name", "") +IF(CONTAINS(
... but, like I noted, Smartsheet can only handle about 60 of the 80 names referenced in the repeating formula.
Stumped. What's the better way?