Forum Discussion
Anthony67
6 years agoFrequent Visitor
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...
- 6 years ago
Try to use VALUES() over the course start date column.
ScheduleStartDates = CONCATENATEX('tct_schedule',VALUES(DAY('tct_schedule'[CourseStartDate])),",")