I am looking for suggestions. In my app I have a nested gallery setup of distribution groups. I have a button that is visible if the group has members. Some are dynamic groups and do not contain other groups. The data source is SharePoint and the group members column is multi-select. When the button is clicked a 'popup' displays the member groups. This is working correctly but the list can be quite long and sometimes is larger than the app.
I don't particularly want a gallery here with a scroll bar. I am hoping that there is a way that I can display these member groups in a multi-column format if the count of groups exceeds a certain number. Currently they are being displayed in a label with auto-height turned on, with this formula, which works very well. I thought about a table, but wasn't sure how to accomplish populating the list across two cells.
Concat(LookUp(Ungroup(colGroups, "Details"), Title = varTitle).Members, Value, Char(13))
