Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!View all the Fabric Data Days sessions on demand. View schedule
Hi, I would like to concate the distinct value from one column.
CONCATENATEX(
VALUES(Table1[Name]),
Table1[Name],
"," )There is also a "Date" column on table1, however, when I try to use the "Date" slicer, the measure will show blank.
May I ask how to fix?
Thanks
Solved! Go to Solution.
Hi @Anonymous ,
Please have a try.
Create a measure.
Measure = var _maxdate=MAXX((ALLSELECTED('Table')),'Table'[date])
var _mindate=MINX(ALLSELECTED('Table'),'Table'[date])
return
CONCATENATEX(FILTER(ALL('Table'),'Table'[date]<=_maxdate&&'Table'[date]>=_mindate),'Table'[name],",")
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Please have a try.
Create a measure.
Measure = var _maxdate=MAXX((ALLSELECTED('Table')),'Table'[date])
var _mindate=MINX(ALLSELECTED('Table'),'Table'[date])
return
CONCATENATEX(FILTER(ALL('Table'),'Table'[date]<=_maxdate&&'Table'[date]>=_mindate),'Table'[name],",")
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
hi @Anonymous
Do you also have a slicer or filter of any kind on the Name Column?
It seems two filter contexts are in confict.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!