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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello !
I want to calculate the number of buyers who have make more than 100 orders, but in my table i have an order number. When i try to write : calculate(distincount(Vendeur));count(order)>10) i have an error beacuse i use an true/false condition.
Is it possible to calculate that ?
Solved! Go to Solution.
@BrunoE - Perhaps try
Measure =
VAR __Table =
SUMMARIZE(
'Table',
[Vendeur],
"Count",COUNTROWS(DISTINCT('Table'[Order]))
)
RETURN
COUNTROWS(FILTER(__Table,[Count]>10))
If that is not correct, please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
The most important parts are:
1. Sample data as text, use the table tool in the editing bar
2. Expected output from sample data
3. Explanation in words of how to get from 1. to 2.
Try this:
// Vendor is a dimension storing vendors
// one vendor per row. [Order Count]
// counts orders.
[# Vendors With 10+ Orders] =
COUNTROWS(
FILTER(
Vendor,
[Order Count] > 10
)
)
Best
D
@BrunoE - Perhaps try
Measure =
VAR __Table =
SUMMARIZE(
'Table',
[Vendeur],
"Count",COUNTROWS(DISTINCT('Table'[Order]))
)
RETURN
COUNTROWS(FILTER(__Table,[Count]>10))
If that is not correct, please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
The most important parts are:
1. Sample data as text, use the table tool in the editing bar
2. Expected output from sample data
3. Explanation in words of how to get from 1. to 2.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 13 | |
| 5 | |
| 5 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 25 | |
| 10 | |
| 10 | |
| 6 | |
| 6 |