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, all!
I have the following table
And im trying to get a simple DISTINCT COUNT[ID] but its not working because the column Type has two different values (B and E).
If i use a mesure, it works BUT im trying to use a Column because after i get the distinct count, ill need get the average.
Like the example below:
In short, i need to get the average of distinct count[id].
Ive tried create a column with
Solved! Go to Solution.
Hi @Anonymous,
Try this piece of code:
In plain text:
Avg_Distinct_ID =
VAR _tbl = SUMMARIZE ( 'Table', [Year], [Month], "dValue", DISTINCTCOUNT ( 'Table'[ID] ) )
RETURN AVERAGEX ( _tbl, [dValue] )
Best Regards,
Alexander
Hi @Anonymous,
Try this piece of code:
In plain text:
Avg_Distinct_ID =
VAR _tbl = SUMMARIZE ( 'Table', [Year], [Month], "dValue", DISTINCTCOUNT ( 'Table'[ID] ) )
RETURN AVERAGEX ( _tbl, [dValue] )
Best Regards,
Alexander
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
23 | |
10 | |
10 | |
9 | |
7 |