Hi,
I have a collection which has the following structure:
Column, Row, Label, Data
and data such as:
1, 1, "Number", "1"
1, 2, "Class", "Class 1",
1, 3, "Type", "Type 1",
2, 1, "Status", "Open"
3, 1, "Stage", "First"
This collection can grow or shrink.
I want to be able to display this collection in a table-like display:
Number 1 Status Open Stage First
Class Class 1
Type Type 1
The column and row can me modified by the user, thus changing the position within the table.
I had thought that I could use a gallery with a Wrap count set as the number of columns available. But I can't figure out how to do it now. I've tried with containers inside the gallery and only show the container if the ThisItem.Column = appropriate column.
Could I iterate through the collection on Row order and create labels dynamically with the appropriate x and y coordinates?
Maybe it can't be done in Power Apps, in which case I will have to give up on this idea.
Any help would be appreciated.
Thanks,
Pete