Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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]),",",DAY('tct_schedule'[CourseStartDate]),ASC)
Works well, but since I have many days that are the same, I get an repetition of same values
e.g. 1, 1, and 11, 11 etc.
I only need to get the distinct days ie 1,2 ,4
therefore i need something like
ScheduelStartDates = CONCATENATEX('tct_schedule',DAY(DISTINCT('tct_schedule'[CourseStartDate])),",",DAY('tct_schedule'[CourseStartDate]),ASC)
This doesn't work.
I have tried moving DISTINCT earlier.. doesnt work either.
Help would be appreciated!
Solved! Go to Solution.
Try to use VALUES() over the course start date column.
ScheduleStartDates = CONCATENATEX('tct_schedule',VALUES(DAY('tct_schedule'[CourseStartDate])),",")
Try to use VALUES() over the course start date column.
ScheduleStartDates = CONCATENATEX('tct_schedule',VALUES(DAY('tct_schedule'[CourseStartDate])),",")
Hi,
You're a champion!! Thank you.
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
24 | |
19 | |
14 | |
10 | |
7 |