I have a single-record Collection. I want to display this record in a Gallery with all values shown.
Example:
- Collection:
ClearCollect(colTest,
{
id: 1, text: "test", userName: "Guy"
}
)
- Pivot pseudo-code:
ForEveryColumn in colTest,
Collect(colTest2,
{
columnName: ThisRecord.?,
columnValue: ThisRecord.?
}
)
)
- Then in the Gallery:
- Items property: colTest2
- Labels set to: columnName and columnValue
Ideas on how to do this? I want to basically take a record in a Collection and turn it to another Collection of key-value pairs.