I have a Dataverse table A, where one field is m:n related to table B. Multiple items of B can be selected for one record of A.
In a gallery of A, I can access them with Concat(ThisItem.B, B_Value) and show them together as one text line.
Is there any similar way for a collection? My target is to get a collection of A, with an added column with the values of B in one text value.
If I try something like ClearCollect(List,AddColumns(A,"B_Values",Concat(B, B_Values))) I get an error.
Any ideas?