March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
19 | |
19 | |
16 | |
8 | |
5 |
User | Count |
---|---|
36 | |
28 | |
16 | |
16 | |
12 |