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
)
User | Count |
---|---|
172 | |
90 | |
74 | |
69 | |
58 |
User | Count |
---|---|
213 | |
160 | |
98 | |
92 | |
73 |