
Announcements
I have developed a custom connector in PowerApps that retrieves data in the following format:
[
{
"productModelName": "Mobile",
"brand": "Samsung",
"Comunication": [
"Bluetooth",
"Wifi",
"5G"
]
},
{
"productModelName": "Mobile",
"brand": "Apple",
"Comunication": [
"Bluetooth",
"Wifi",
"5G",
"4G"
]
}
]
I am trying to bind this collection to a DataTable, but I am unable to display the 'Comunication' column because it is an array. Instead of showing the values, it displays as [[error]].
I also tried different methods to access the values of the Comunication column, such as:
First(collProducts).ComunicationIndex(First(collProducts).Comunication, 1)However, I am still unable to access this data properly. My goal is to display the values of the Comunication array in a dropdown control.
Could someone please help me figure out how to achieve this?