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 !
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.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
12 | |
10 | |
10 | |
6 |