Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi there,
I recently ran into the following issue. My team has since resolved it (included) but we don't know 'why' it is the resolution.
The ask: Calculate a Distinct Count of Values where the Primary Key IN a list of PK's defined by a subquery.
The strange thing is, that when we ran the subquery through DAX Studio by itself, it returned the expected results.
Thank you for taking a look!
The DAX that WORKED:
VAR _subq =
The DAX that DID NOT WORK:
VAR _subq =
Solved! Go to Solution.
Hi @prill22ta ,
Using a single column argument, ALL returns all the unique values of the column.
CALCULATETABLE (
ALL( table[field] ),
table[field2] = "Yes"
)
So this statement returns the unique value of the table[filed] column, and the following table[filed2]="Yes" does not play a filtering role for the previous statement, because the ALL function ignores all filters
Best Regards,
Gallen Luo
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @prill22ta ,
Using a single column argument, ALL returns all the unique values of the column.
CALCULATETABLE (
ALL( table[field] ),
table[field2] = "Yes"
)
So this statement returns the unique value of the table[filed] column, and the following table[filed2]="Yes" does not play a filtering role for the previous statement, because the ALL function ignores all filters
Best Regards,
Gallen Luo
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Both versions are a measure.
For the first dax code, is it a measure? what filter context does it have?
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
11 | |
10 | |
10 | |
10 |
User | Count |
---|---|
18 | |
13 | |
12 | |
11 | |
8 |