Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

View all the Fabric Data Days sessions on demand. View schedule

Reply
Anonymous
Not applicable

Measure - Concatenax(values)

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

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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],",")

vpollymsft_0-1672895570194.png

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.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

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],",")

vpollymsft_0-1672895570194.png

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.

FreemanZ
Super User
Super User

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.

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors