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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors