I borrowed from a smart solution of another Admin and can't seem to adapt it to my org. Credit: Original Article (https://medium.com/@databasedeanne/how-to-change-a-multi-select-picklist-value-while-keeping-the-other-values-the-same-via-process-86756e28ca76)
IF( INCLUDES([Options__c].Status__c, “Active”), “Active”, “”)
&
IF(
AND(INCLUDES([Options__c].Status__c, “Active”),
OR(
INCLUDES([Options__c].Status__c, “Insufficient for Options”),
INCLUDES([Options__c].Status__c, “Insufficient for Safe Courses”),
INCLUDES([Options__c].Status__c, “Insufficient for Degree Plan”),
INCLUDES([Options__c].Status__c, “Waiting on Student”)), “; ”, “" )
&
IF( INCLUDES([Options__c].Status__c, “Insufficient for Options”), “Insufficient for Options”, “”)
&
IF(
AND(
INCLUDES([Options__c].Status__c, “Insufficient for Options”),
OR(
INCLUDES([Options__c].Status__c, “Insufficient for Safe Courses”),
INCLUDES([Options__c].Status__c, “Insufficient for Degree Plan”),
INCLUDES([Options__c].Status__c, “Waiting on Student”)), “; ”, “”)
&
IF(INCLUDES([Options__c].Status__c, “Insufficient for Safe Courses”), “Insufficient for Safe Courses”, “”)
&
IF(
AND(
INCLUDES([Options__c].Status__c, “Insufficient for Safe Courses”),
OR(
INCLUDES([Options__c].Status__c, “Insufficient for Degree Plan”),
INCLUDES([Options__c].Status__c, “Waiting on Student”)), “; ”, “”)
&
IF(INCLUDES([Options__c].Status__c, “Insufficient for Degree Plan”), “Insufficient for Degree Plan”, “”)
&
IF(
AND(
INCLUDES([Options__c].Status__c, “Insufficient for Degree Plan”),
INCLUDES([Options__c].Status__c, “Waiting on Student”), “; ”, “”)
&
IF(INCLUDES([Options__c].Status__c, “Waiting on Student”), “Waiting on Student”, “”)
1 answer
Hi James,