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.
My Dax Concatenates values , but their are some blank values however it adds comma in front when i try to concatenate and try to remove
IF(HASONEVALUE('MyTable'[TableID]),(CONCATENATEX(
VALUES('MyTable'[MissingDateList]),'MyTable'[MissingDateList] ,",",'MyTable'[MissingDatelist], ASC)))
,10/1 | |
,10/2,10/5 | |
,10/2,10/3,10/4,10/5 |
the values should be instead .. i am missing something and not sure what ..
10/1 | |
10/2,10/5 | |
10/2,10/3,10/4,10/5 |
Solved! Go to Solution.
would filtering the blanks do the job?
Measure = IF( HASONEVALUE('MyTable'[TableID]), CONCATENATEX( FILTER(VALUES('MyTable'[MissingDateList]),'MyTable'[MissingDateList]<>BLANK()), 'MyTable'[MissingDateList] , ",", 'MyTable'[MissingDatelist], ASC ) )
would filtering the blanks do the job?
Measure = IF( HASONEVALUE('MyTable'[TableID]), CONCATENATEX( FILTER(VALUES('MyTable'[MissingDateList]),'MyTable'[MissingDateList]<>BLANK()), 'MyTable'[MissingDateList] , ",", 'MyTable'[MissingDatelist], ASC ) )
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
12 | |
11 | |
7 | |
6 |