Forum Discussion

Anthony67's avatar
Anthony67
Frequent Visitor
6 years ago
Solved

Concatenate returning distinct values

Hello everyone, I have a measure in a table that gets the concatenation of values in a different table: ScheduelStartDates = CONCATENATEX('tct_schedule',DAY('tct_schedule'[CourseStartDate]),",",D...
  • lbendlin's avatar
    6 years ago

    Try to use VALUES() over the course start date column. 

     

    ScheduleStartDates = CONCATENATEX('tct_schedule',VALUES(DAY('tct_schedule'[CourseStartDate])),",")