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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
GreenP
Regular Visitor

Contribution of Top Performers in DAX

Dear Experts,

 

I have a table like below:

ZoneBrandCustomerBill Amount
NORTHBRAND-002[1000000216]100
EASTBRAND-002[1000000229]91
EASTBRAND-002[1000000231]44
NORTHBRAND-002[1000000280]40
EASTBRAND-001[1000000220]39
NORTHBRAND-002[1000000257]33
NORTHBRAND-002[1000000220]29
EASTBRAND-001[1000000216]22
EASTBRAND-002[1000000477]22
NORTHBRAND-001[1000000414]19
EASTBRAND-001[1000000229]12
EASTBRAND-002[1000000230]10
NORTHBRAND-001[1000000400]10
EASTBRAND-002[1000000230]8
NORTHBRAND-002[1000000400]8
EASTBRAND-001[1000000230]6
NORTHBRAND-001[1000000248]5
NORTHBRAND-001[1000000231]4
EASTBRAND-001[1000000224]3
EASTBRAND-001[1000000231]2
NORTHBRAND-001[1000000406]2
NORTHBRAND-001[1000000229]0.5

 

I need to calculate a measure - Total Billed Amount for Top 3 Customers and want to plot the measure for each Zone.

Brand can be selected from a slicer (Multiple selection).

 

I am expecting the following table when all Brands are selected:

ZoneBilled Amount (Top 3 Customers)
EAST188
NORTH173

 

I am expecting the following table when only BRAND-001 is selected in slicer:

ZoneBilled Amount (Top 3 Customers)
EAST73
NORTH34

 

If anyone can help me with the DAX to calculate the measure it would be of great help.

 

Thanks.

1 ACCEPTED SOLUTION
FreemanZ
Super User
Super User

hi @GreenP 

try to plot the zone column and a measure like this:

Top3Amt = 
CALCULATE(
    SUM(TableName[Bill Amount]),
    TOPN(
        3,
        ALL(TableName[Customer]),
        CALCULATE(SUM(TableName[Bill Amount]))
    )
)

 

verified and worked like this:

FreemanZ_2-1675238607985.png

FreemanZ_3-1675238617657.png

 

 

 

View solution in original post

1 REPLY 1
FreemanZ
Super User
Super User

hi @GreenP 

try to plot the zone column and a measure like this:

Top3Amt = 
CALCULATE(
    SUM(TableName[Bill Amount]),
    TOPN(
        3,
        ALL(TableName[Customer]),
        CALCULATE(SUM(TableName[Bill Amount]))
    )
)

 

verified and worked like this:

FreemanZ_2-1675238607985.png

FreemanZ_3-1675238617657.png

 

 

 

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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