Forum Discussion
DISTINCT command pulls BLANKS
- 9 years ago
Just change the column instead of all table
Table = DISTINCT(FILTER(VALUES(Transactions[CheckInLoc]),LEN(Transactions[CheckInLoc])>0))
Hi,
Nice try and thank you very much for your suggestion.
However...
I only want the CheckinLoc column with the unique values for that column. Your query pulls all columns.
Just change the column instead of all table
Table = DISTINCT(FILTER(VALUES(Transactions[CheckInLoc]),LEN(Transactions[CheckInLoc])>0))
- DataGuy20169 years agoAdvocate IV
- Emmaxson9 years agoAdvocate I
Came in handy after may other options did not help me.
- MarkPalmberg7 years agoKudo Commander
Vvelarde , I'm having an issue with this solution. I created my table of (what appear to be) distinct values using the following DAX:
Units = VAR tbl1 = DISTINCT(FILTER(VALUES('Prospect Pool'[Unit]),LEN('Prospect Pool'[Unit]) > 0)) VAR tbl2 = DISTINCT('Qualification Interactions'[BUSINESS UNIT]) RETURN UNION(tbl1,tbl2)But when I try to join that new table to another table in a one-to-many relationship, I get an error that one of the columns must contain distinct values. I took the results from the DAX above into Excel to examine more closely for issues but didn't find any.
Any thoughts on what might be messing me up here? Thanks (if you're still out there!). Perhaps I need to use a different method to generate this table of distinct values from columns in multiple tables?
- Vvelarde7 years agoCommunity Champion
Hi, maybe there are duplicates in the Union.
Also i prefer to filter the blank rows instead of Len > 0
DISTINCT(FILTER(VALUES(Table1[Unit]),Table1[Unit]<>BLANK()))
Regards
Victor
- MarkPalmberg7 years agoKudo Commander
Thanks for your reply, Vvelarde .
I tried another method to generate my table of distinct values, but I'm still getting the same duplicate errors value.
I created two queries, one from each "Unit" column in my two source tables. I then removed dupes from each and converted them to tables, then did an append query of those two tables and removed duplicates from *that* query. No love. I could generate this list of values in a SQL query, but I'm trying to learn some DAX and M within Power BI so would like to get it working there, if for no other reason than to discover what I've done wrong.