'How can I get items in a combobox to appear in an email?
I am building an app that requests information by emailing a group once completed. I have one combobox people picker and every time the email goes through, only the final name comes through from this selection.
I am using Combobox.Selected.DisplayName- where only the final name appears. When I try Combobox.SelectedItems, I get an error and it won't work at all. I need to have all the items appear in the email.
Solution 1:[1]
The type of Combobox.SelectedItems is a table. If you want a single text value, you can use a function such as Concat to aggregate them, something along the lines of
Concat(Combobox.SelectedItems, DisplayName, ", ")
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | carlosfigueira |
