I have a combo box where multiple items can be selected and a text box where the selected values show.
I have set the default value of the combo box to "Client" with the formula:
DefaultSelectedItems = Table({Value:"Client"})
To get the selected items from the combo box I have used the formula:
Default = Concat(ComboBox3.SelectedItems, Result, ", ")
This shows all selected items, except the initial default of "Client". I assume because it's not a result, but a default I have input.
How can I get it to show this as well, if it is selected?
I'm sure I could work it out given some time, but I've been learning my way around Power Apps all day and I'm a bit burnt out.