Hallo,
I have a form with many fields including a combo box. There is a sharepoint list and the column is a person or group that allows multiple values.
I have created an html and there is also a flow for the conversion called by a button. I want to export the form to pdf.
for the specific field i use "&CoordinatorDropdown.Selected.DisplayName&".
I tried using SelectedItems but i get a red line.
I want all the accounts added in the dropdown field to be displayed in the pdf. But i only get one.
Any ideas?
Solved! Go to Solution.
Hi @marial16
If you want to produce a comma separted list of the selected items in your combobox, you can use this syntax:
Left(
Concat(CoordinatorDropdown.SelectedItems, ThisRecord.DisplayName & ", "),
Len(Concat(CoordinatorDropdown.SelectedItems, ThisRecord.DisplayName & ","))-1
)
Hi @marial16
If you want to produce a comma separted list of the selected items in your combobox, you can use this syntax:
Left(
Concat(CoordinatorDropdown.SelectedItems, ThisRecord.DisplayName & ", "),
Len(Concat(CoordinatorDropdown.SelectedItems, ThisRecord.DisplayName & ","))-1
)
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
184 | |
51 | |
47 | |
34 | |
32 |
User | Count |
---|---|
258 | |
88 | |
78 | |
68 | |
67 |