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.
Solved! Go to Solution.
solved with the following
CountItem = CALCULATE (
DISTINCTCOUNT (TblName[itemnumber] );TblName[Status]="Open")
Worked perfectly! Thank you so much!
solved with the following
CountItem = CALCULATE (
DISTINCTCOUNT (TblName[itemnumber] );TblName[Status]="Open")
Hi @Anonymous ,
I used the same DAX you posted, however I received a result of one when it should've been two. What am I doing incorrectly? Here is my DAX expression:
This work with me In measure (correct value) but On column, it gives a wrong value , why ?
Hi,
Without seeing some example data this isn't all that clear. If you have two possible text values in a column then distinct count will only return 0,1,2 depending on your filters. Is this your desired result?
It might seem a bit obvious but does DISTINCTCOUNT([Your Column Name] return what you need?
Thanks
Thomas
Thanks. I came to this post looking for help finding the number of distinct values in a column and the DISTINCTCOUNT function did work for me.
User | Count |
---|---|
69 | |
65 | |
63 | |
55 | |
28 |
User | Count |
---|---|
112 | |
81 | |
65 | |
48 | |
42 |