Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello,
I have two tables
The purpose is to get for every account the number of unique order types. For example, if an account have 5 orders (2 of type A, 1 of type B and one of type C), I should get 3 as number. For that I used this measure:
Solved! Go to Solution.
Hi,
According to your description, I can roughly understand your requirement, I also created some sample data and I can successfully get the correct count value using the DAX formula:
Count of unique order types =
CALCULATE(DISTINCTCOUNT(Orders[type]),ALLSELECTED(Orders))
Then I go to check the interaction type between the slicer and the visuals to make sure they are enabled:
And I can get what you want, like this:
You can download my test pbix file below
Thank you very much!
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
According to your description, I can roughly understand your requirement, I also created some sample data and I can successfully get the correct count value using the DAX formula:
Count of unique order types =
CALCULATE(DISTINCTCOUNT(Orders[type]),ALLSELECTED(Orders))
Then I go to check the interaction type between the slicer and the visuals to make sure they are enabled:
And I can get what you want, like this:
You can download my test pbix file below
Thank you very much!
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
There is a relation on accountid 1:N.
User | Count |
---|---|
14 | |
10 | |
7 | |
6 | |
5 |
User | Count |
---|---|
30 | |
19 | |
12 | |
7 | |
5 |