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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
BHAVIKCHAWLA
New Member

Card visualization showing percent of total

Hi All, I want to show manager's team(agents) performance compared to other team of same region.
Only card and one slicer is present in report. Slicer is of manager and card shows performance of its team as percentage.
 Below is the sample data. Two tables are there.

 

RegionManager_NameAgent_Name
EastKevinApple
EastKevin

Mango

CentralLouisBanana
CentralLouisOrange
EastMarkPineapple
EastLucasWatermelon
IDAgentSales
1Apple60
2Mango40
3Banana30
4Orange70
5Pineapple50
6Watermelon50

 

For example if manager "Kevin" is selected in slicer, then card should show value = (60+40)/(60+40+50+50) = 50%
---Kevin's team/Total sales within Kevin's region
Someone please help me in DAX
Please not percentage will be displayed in card.

1 ACCEPTED SOLUTION
Alex87
Solution Sage
Solution Sage

Solution =

VAR __ValuesManager = VALUES(DIM[Agent_Name])
VAR __ValuesRegion = VALUES(DIM[Region])

VAR __Nomin = CALCULATE(SUM(Data[Sales]), Data[Agent] IN __ValuesManager)

VAR __DenomValues =
    CALCULATETABLE(
        VALUES(DIM[Agent_Name]),
        REMOVEFILTERS(DIM),
        DIM[Region]  IN __ValuesRegion
    )
VAR __DeNomin = CALCULATE(SUM(Data[Sales]), REMOVEFILTERS(DIM[Manager_Name]), Data[Agent] IN __DenomValues)

VAR __Result = DIVIDE(__Nomin, __DeNomin)

RETURN
__Result

 

Please consider the Manager_Name slicer coming from the DIM table (Agent_Name, Manager_Name, Region) and

in terms of model : one to many relationship on Agent_Name

 

 if this solution answers your needs please mark it as a solution

 

Best regards,

Alex




Did I answer your question? Mark my post as a solution!
Appreciate your Like/Kudos

Proud to be a Super User!




View solution in original post

2 REPLIES 2
Alex87
Solution Sage
Solution Sage

Solution =

VAR __ValuesManager = VALUES(DIM[Agent_Name])
VAR __ValuesRegion = VALUES(DIM[Region])

VAR __Nomin = CALCULATE(SUM(Data[Sales]), Data[Agent] IN __ValuesManager)

VAR __DenomValues =
    CALCULATETABLE(
        VALUES(DIM[Agent_Name]),
        REMOVEFILTERS(DIM),
        DIM[Region]  IN __ValuesRegion
    )
VAR __DeNomin = CALCULATE(SUM(Data[Sales]), REMOVEFILTERS(DIM[Manager_Name]), Data[Agent] IN __DenomValues)

VAR __Result = DIVIDE(__Nomin, __DeNomin)

RETURN
__Result

 

Please consider the Manager_Name slicer coming from the DIM table (Agent_Name, Manager_Name, Region) and

in terms of model : one to many relationship on Agent_Name

 

 if this solution answers your needs please mark it as a solution

 

Best regards,

Alex




Did I answer your question? Mark my post as a solution!
Appreciate your Like/Kudos

Proud to be a Super User!




Thanks Alex!

 

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.