I have nested gallery and I am trying to concat the value from nested gallery and displaying it in Parent gallery.
Concat is working fine, Need help to use distinct with the result.
Below are the formulas.
Parent Gallery Item property:
GroupBy(SortByColumns(Filter('datasource1',Uke = Value(Ti_SumWeekNum.Text) ),"bk_timex"),"bk_date","GroupedbyVactype" )
Nestedgallery item property:
ThisItem.GroupedbyVactype
Text box default property:
Concat(ThisItem.GroupedbyVactype,Concatenate(Vaksinetype,","))
Result:
Moderna,Moderna,Moderna,Pfizer
Required result:
Moderna,Pfizer
Can someone help me to achieve this