Hi,
I want to concatenate the items in a TOPN table column, and this is fine, but I sometimes have duplicate items,
so if I wanted the top 3 days in a month by date, these might all be Saturday, which gives me a concat of Sat Sat Sat , and ideally I'd just
like to see it once, This is just mock up example so
So what I'm looking for is something like ;
Richard.
I want to concatenate the items in a TOPN table column, and this is fine, but I sometimes have duplicate items,
so if I wanted the top 3 days in a month by date, these might all be Saturday, which gives me a concat of Sat Sat Sat , and ideally I'd just
like to see it once, This is just mock up example so
Excel Formula:
Top3C:=VAR tops = TOPN(3,
SUMMARIZE(Table1,Table1[Country],Table1[Product]),[Total],DESC)
RETURN CONCATENATEX(tops, Table1[Country],",")
So what I'm looking for is something like ;
Excel Formula:
CONCATENATEX( VALUES( tops[Column] ) , Column, ",")
Richard.