This should be easy:
1. I have a combobox where users can select several states.
2. From this combobox I use this code:
Set(SelEmailStates,Concat(ComboBox1.SelectedItem,'StateAbbreviation' & ","));
3. That instruction generates a string: "AK,AZ"
4. I want to use this to filter a SP list:
Filter(zWPB_State_Contacts,state in varSelEmailStates)
The "in" is underlined and I get a delegation warning but it's also not finding any records.
Any insight would be appreciated.
Carter