Hello Everyone,
I have two SharePoint List, two Combo Boxes and I want to concatenate the options from SPList2 based on the Options selected in SPList1.
All the Choice Columns are Multi select.
Example:
When you select Option2 & Option3 in SPList1 then with Switch formula you are able to select Option4, Option5 Option6, Option7, Option8 and Option9
I am currently using this Switch formula on the second Combo Box
Switch(ComboBox1.Selected.Value, "Name1",Choices([@'SPList2'].column_1), "Name2",Choices([@'SPList2'].column_2),"Name3",Choices([@'SPList2'].column_3))
I hope someone can help.