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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
cfriesen
Frequent Visitor

Help with Calculating Impact

I cannot for the life of me figure out how to get impact to calculate correctly. I have a table that has total handle time in minutes in the column [act_HandleMins] and a column that has total calls taken [TotalCallsHandled]. Now I neet to calculate Average handle time in Seconds and I do so with the Measure formula:

 

 

 

CRT = 
IF(
    DIVIDE(
        SUM('Aux Raw for Division'[act_HandleMins]) * 60,
        SUM('Aux Raw for Division'[TotalCallsHandled])
    ) = 0,
    BLANK(),
    DIVIDE(
        SUM('Aux Raw for Division'[act_HandleMins]) * 60,
        SUM('Aux Raw for Division'[TotalCallsHandled])
    )
)

 

 

 

and I have the results displayed in a Matrix table that drills down 3 steps in the rows going from leader > supervisor > the operator  And the Column being CRT.  Now I need to add another column that shows what the impact is on CRT for each row. 
Any help would be greatly appreciated. I have attempted to modify some ideas from other posts to no avail. 
Sample Table:

SupervisorManagerOperatoract_HandleMinsTotalCallsHandledCRT (Measure)
agt1053530
aaggtt1229348
bhu11.533380
bbhhuu10.247479
civ1519285
cciivv12.731394



1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @cfriesen ,

 

We can create measures.

totalcrt = CALCULATE([CRT],ALL('Aux Raw for Division'))
Impact on CRT = IF([CRT]>[totalcrt],[CRT]-[totalcrt],0)

vtangjiemsft_1-1688629465790.png

 

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @cfriesen ,

 

I'm sorry I can't understand it (I need to add another column to show the impact on each CRT row), can you provide the detailed logic and your expected results? Thanks in advance.

 

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

 

 

Here is a screenshot of the Matrix table I am using, Im wanting a new column that shows what each rows impact on the total [CRT] (total talktime/calls) so if one rows CRT is higher then the total CRT have that new column show how many seconds it is raising the total amount. Screenshot 2023-07-05 074423.jpg

Anonymous
Not applicable

Hi @cfriesen ,

 

We can create measures.

totalcrt = CALCULATE([CRT],ALL('Aux Raw for Division'))
Impact on CRT = IF([CRT]>[totalcrt],[CRT]-[totalcrt],0)

vtangjiemsft_1-1688629465790.png

 

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors