Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Anonymous
Not applicable

calculate client count

Hi Community..!!

I wanted to calculate count of clients that ordered more than 25000 products.
Could anyone help me to solve this.?

We have a client_id and quantity of products.

5 REPLIES 5
amitchandak
Super User
Super User

@Anonymous , create a measure like

 

countx(filter(sumamrize(Table, Table[Client], "_1", sum(Table[Amount])), [_1] >25000), [Client])

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Hi @amitchandak 

Client_id is in Client table and Quantity in Order table
what should be the relationship between these two tables?

Anonymous
Not applicable

Hi @Anonymous,

Can you please share a pbix or some dummy data that keep raw data structure with expected results? It should help us clarify your scenario and test to coding formula.

How to Get Your Question Answered Quickly  

Regards,

Xiaoxin Sheng

Anonymous
Not applicable

Client table 

ppatil_0-1654667605175.png

OrderDetails Table

ppatil_1-1654667655929.png

Relationship between these two tables

ppatil_2-1654667744356.png

 

Anonymous
Not applicable

HI @Anonymous,

Did these tables links based on the index field? If that is the case, you can try to use the following measure formulato to achieve your requirement.

formula =
var Orderlist=
    FILTER (
        SUMMARIZE (
            OrderDetails,
            [Index],
            [Product ID],
            "Total Amount", SUM ( OrderDetails[Quantity] )
        ),
        [Total Amount] > 25000
    )
return
COUNTROWS (FILTER (ALLSELECTED (Client),[Index] in SELECTCOLUMNS (Orderlistm,"Index",[Index])))

If these tables are not linked based on the index field, you can replace the 'Index' part in the above table with your table relationships key field.

Regards,

Xiaoxin Sheng

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.