AlexGale
7 years agoQrew Captain
Combine two multi-select fields
I have set up a formula field to combine two multi-select fields into a using the list function. It looks like this:
List(";", [Select1], [Select2])
At a basic level, this works fine. However, Select1 and Select 2 frequently end up having intersecting values. This is a problem for my formula. For example if:
Select1= A;B;D
Select2=A;C;E
the formula would output: A;A;B;C;D;E
I should note that the number of selections for each field is not constant, and can be pretty much as large as the user wants.
Is there a way to fix this?
List(";", [Select1], [Select2])
At a basic level, this works fine. However, Select1 and Select 2 frequently end up having intersecting values. This is a problem for my formula. For example if:
Select1= A;B;D
Select2=A;C;E
the formula would output: A;A;B;C;D;E
I should note that the number of selections for each field is not constant, and can be pretty much as large as the user wants.
Is there a way to fix this?