Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 |
---|---|
25 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
27 | |
13 | |
11 | |
9 | |
6 |