The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi All,
I am trying to fetch all the distinct PrimaryName except blank value from existing table to a new one but there is blank value also present. Is that possible in Power BI.?
I have tried following dax.
Any Help would be Appreciated...
Thanks in Advance...
Solved! Go to Solution.
Hey @community_pinki ,
you can remove that row with the FILTER function:
Creators =
FILTER(
DISTINCT(
VALUES( CREATOR_DATA[PrimaryName] )
),
CREATOR_DATA[PrimaryName] <> BLANK()
)
Hi @community_pinki ,
myTable = DISTINCT(FILTER(VALUES(Attendee[Completed]),LEN(Attendee[Completed])>0))
Replace your tablename and columnname in above DAX.
Thanks,
Pragati
Hi @community_pinki ,
myTable = DISTINCT(FILTER(VALUES(Attendee[Completed]),LEN(Attendee[Completed])>0))
Replace your tablename and columnname in above DAX.
Thanks,
Pragati
HI @community_pinki ,
I am glad the solution works. Please mark it as a solution if you are happy with it. 🙂
Thanks,
Pragati
Hey @community_pinki ,
you can remove that row with the FILTER function:
Creators =
FILTER(
DISTINCT(
VALUES( CREATOR_DATA[PrimaryName] )
),
CREATOR_DATA[PrimaryName] <> BLANK()
)
Hey @community_pinki ,
perfect, I'm happy you could solve that 🙂.
Don't forget to mark all approaches that worked as solution ✔️ (you can mark multiple posts as solution).
User | Count |
---|---|
69 | |
64 | |
62 | |
55 | |
28 |
User | Count |
---|---|
112 | |
80 | |
65 | |
48 | |
38 |