I have a gallery with a textbox in which I'm trying to Concat values and delete the duplicated.
Concat is working fine, Need help to use distinct with the result:
Gallery Item property:
GroupBy(Table1,"EID","DATA")
Text box property:
Concat(ThisItem.DATA,'EU Name', ";")
Result:
Jhon;Jhon;Gabriel;Carl;Carlo
Required result:
Jhon;Gabriel;Carl
Table1= my DataSource
EID= The column I used to GroupBy
DATA= The column I created to unify the GroupBy values
EU NAME= A column with user names to display