@gonzna3
This works, but I have some rows with ,multi and some single person... the single person and the multi at the end have a ",". Is there a way to avoid this?
You can change your formula to this to drop the final ",":
AddColumns(yourDataSource,
"multiPeopleCol",
Left(Concat(yourMultiPeopleColumnName, DisplayName & ", "),
Len(Concat(yourMultiPeopleColumnName, DisplayName & ", "))-2) //drops last two characters
)
Also view is long not split or under each other?
You will not be be able to do that with a DataTable control. They are single line only.
why cant powerapps just literally show me the list/table?
seems like waste of time and functionality...
I'm not sure what you mean by waste of time and functionality. The DataTable does exactly what it does. It has VERY limited formatting and control over it. This is why the Gallery, rather than DataTable, is the better choice for a control when doing a list where you need to control parts of it individually.
I also have 5 columns with multi in this table, seems i cant do this for more than 1 column to so does not work...
You can do this for as many columns as you want. I only demonstrated one as I don't know your column names and it would be repetitive otherwise.
But, if you wanted more, just add them on the AddColumns function:
AddColumns(yourDtaSource, "Col1Name", theFunctionAbove, "Col2Name", theFunctionAbove, "Col3Name", theFunctionAbove...etc, etc.