Hi,
I have a combo box that is based on a Share Point Choice field. The field called ColorsSelected displays the Share Point list combo box values display in ascending order as each choice is entered into the Share Point list:
Aqua
Blue
Green
Red
Violet
Yellow
If a user selects Red then Blue, the 2 items show as selected (Red, Blue) and that is how they are saved when I patch the data to back to Share Point.
I need to patch the selected combo box values in ascending order (Blue, Red). I know SortByColumns cannot be used with Choice fields so I used the Sort command. However it is not sorting the selected items back in ascending order:
ColorsSelected: Sort(comboboxColors.SelectedItems,"Ascending")
Does anyone know if this is possible? Thank you!!