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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Ersin_K
New Member

Calculate the KPI share of the category weighted by the KPI

Hi everyone,
I need help with a question that I unfortunately can't solve with my DAX knowledge and with a lot of searching. Maybe one of you can help me.

In Excel I solve the problem as follows:

Ersin_K_0-1674717823923.png

 

In PowerBI i habe one Table with the Data

 

The KPI1 "Call Handling Time ACT" was Calclulate als a Measure:

 

CHT =

DIVIDE(
sumx(
filter('Data_vw_Kuko_Tagesdaten',
[Intern/Extern/Gesamt]IN{"Intern","Extern"}&&
[Kennzahl]="Workload"&&
[FC-Stand]="Ist")
,
'Data_vw_Kuko_Tagesdaten'[Wert])
,
sumx(
filter('Data_vw_Kuko_Tagesdaten',
[Intern/Extern/Gesamt]IN{"Intern","Extern"}&&
[Kennzahl]="Menge"&&
[FC-Stand]="Ist"),
'Data_vw_Kuko_Tagesdaten'[Wert])
)
*60

 

The KPI2 "Calls ACT" was Calclulate als a Measure to:

Calls ACT =

CALCULATE(
SUM(Data_vw_Kuko_Tagesdaten[Wert]),
Data_vw_Kuko_Tagesdaten[FC-Stand]IN { "Ist"},
Data_vw_Kuko_Tagesdaten[Kennzahl]="Menge",
Data_vw_Kuko_Tagesdaten[Eingang/Angenommen/Aufleger]="angenommen"
)

I would like to calculate the CHT share of the category ("Themengruppe") weighted by the calls total and display the result in a matrix graph like the 3Table in the Pic.

Unfortunately, I can't get this weighting with the two measures displayed in a matrix table. Maybe you can help me.

Thank you in advance

 

Ersin


 

0 REPLIES 0

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

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.