Hello guys,
I have a gallery on the left side but the problem is all of the records on sharepointlist are being showed but I only want to show the group or removing the duplicates by UserID column
| UserID | Color |
| 123 | Red |
| 456 | Green |
| 123 | Yellow |
so I want the gallery to show
and when I click the user ID 123
the label will show the Color Red;Yellow
I have this formula on my label but it only shows two ; but I want to show Color column
Concat(
Filter(
MyList,
'UserID' = Gallery1.Selected.'UserID'
).Color,";")
Any help would really be appreciated