Hi every one,
I am using a Combo box. if we select multiple items from combo box the data should be stored as selected value display names separated by coma (,).
for this I have written below query which is working fine.
let us say I am using RequestorName Combo box, and display name is the name that is being concatenated.
Concat(
ComboBox_RequestorName.SelectedItems,
DisplayName,
","
)
but Problem is if I did not select any item from combo box it should show as NA.
i have implemented this but it is not working
Concat(
If(IsEmpty(ComboBox_RequestorName.SelectedItems)," ",ComboBox_RequestorName.SelectedItems),
DisplayName,
","
)
can anyone help on this?