Hello,
I want to do the following:


I have 2 Sharepoint Choice columns that each contain 3 text choices. During my Power App OnStart I want a collection being built with 2 columns with these values. So:
| Code | Description |
| WTD | Transmission.... |
| NWA | Water..... |
| WIN | Water... |
I know this can be achieved by doing this the manual way:
ClearCollect(
colExtendedDescriptions,
{ Code: "WTD", Description: "Transmission..." },
{ Code: "NWA", Description: "Water.." },
{ Code: "WIN", Description: "Water..." },
);
But since I have a lot of choices (80+) and all info already preset in the Sharepoint columns I prefer not do it this way if possible.
I have tried a lot of approaches, but the collection is not being built how I want. Is this even possible?
Thank you so much for helping!