Hi all,
I want to display all selections in my dropbox from my collection list. Currently, I get items but they are shown in blank:
My Sharepoint list
| Title (String) | Hersteller / Manufacturer (Choices) |
| 1 | Manufacturer1 |
I create a collection from SP:
ClearCollect(
colHerstelller;
HerstellerSP
);;Adding new items to collection
Collect(colHersteller;
{
Hersteller: {
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference";
Value: txtNewHersteller.Text
};
});;
Showing items in Dropbox Items:
colHersteller.Hersteller
Shows me blank items.
However, trying
Choices(colHersteller.Hersteller)I get an error statement.
Any help is appreciated.

Report
All responses (
Answers (