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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
filarap
Helper III
Helper III

Creating impact calculator

Hi all,

 

I am new with Power BI and i am trying to re-create on tool i used in Excel. It basically tells me what is an impact of one person/process to the team result. Below is table and function showing excel example.

 

=((testimp[[#Totals],[ttls]]-[@ttls])/(testimp[[#Totals],[Freq]]-[@Freq]))-testimp[[#Totals],[Result]]

 

Name        Freq        Result      ttls           Impact 

name 1103003000-3.06131
name 21525738550.679559
name 376524564-21.6475
name 4502171085027.31679
name 543641456-3.15207
name 624150360024.7367
name 7233297567-13.9368

                   133        262           34892 

 

I have tried several options using Sumx, allselected and some filtering. Also tried creating totals measures and using it against, but nothing works for me.

 

I would appreciate any help or direction.

Thank you

8 REPLIES 8
filarap
Helper III
Helper III

Apologies, this was a table reference

 

=($D$9-$D2)/($B$9-$B2))-$C$9

 

 ABCDE
1NameFreqResultttlsImpact
2name 1103003000-3.06131
3name 21525738550.679559
4name 376524564-21.6475
5name 4502171085027.31679
6name 543641456-3.15207
7name 624150360024.7367
8name 7233297567-13.9368
9 13326234892 

 

Hope this clarifies

regards

Anonymous
Not applicable

Hi @filarap,

 

You can try to use follow measure if it suitable for your requirement:

Measure = 
VAR freq_T =
    CALCULATE ( SUM ( Test[Freq] ), ALLSELECTED ( Test ) )
VAR result_T =
    CALCULATE ( SUM ( Test[Result] ), ALLSELECTED ( Test ) )
VAR tts_T =
    CALCULATE ( SUM ( Test[ttls] ), ALLSELECTED ( Test ) )
RETURN
    ( tts_T - MAX ( Test[ttls] ) )
        / ( freq_T - MAX ( Test[Freq] ) )
        - result_T

19.PNG

 

Regards,
Xiaoxin Sheng

Hi Xiaoxin Sheng,

 

This does provide an idea where is the biggest impact, but what i need is to calculate exactly how many seconds that impact is.

 

This would help me to understand a level of potential improvement.

 

Thank you for your help

Filarap

Anonymous
Not applicable

HI @filarap,

 

>>what i need is to calculate exactly how many seconds that impact is

I'm not so sure for this, can you please explain more about this?(e.g expected result)

 

Regards,
Xiaoxin Sheng

Certainly , ill be happy to.

 

Please have a look at example already provided and formula that goes into impact column for each row.

 

=($D$9-$D2)/($B$9-$B2))-$C$9

 

 ABCDE
1NameFreqResultttlsImpact
2name 1103003000-3.06131
3name 21525738550.679559
4name 376524564-21.6475
5name 4502171085027.31679
6name 543641456-3.15207
7name 624150360024.7367
8name 7233297567-13.9368
9 13326234892 

 

The principle is that we are taking a specific user, process (Row 2 example) and calculating the difference between total weighted average results and the same, but without observed process or user. 

 

In the example above, we can see weighted average of 262 seconds (C9) and in E2 we can see how much seconds would this result change, if we remove Name 1 from the total calculation. This is giving us the impact of this user/process.

 

I hope this makes it clear.

Regards

dnmrk
Frequent Visitor

Hi - Any luck in solving this? Trying to make the same sort of measure.

Thanks.

Hi @dnmrk 

 

Please see below.

Result and freq are measures I made.

Name is column in table.

 

Impact =
CALCULATE
([Result],ALLSELECTED(Table1[Name))
-
divide((CALCULATE([Result]*[Freq],ALLSELECTED(Table1[Name]))
    -
    CALCULATE([Result]*[Freq])),
        CALCULATE([Freq],ALLSELECTED(Table1[Name]))-[Freq])

 

Hope this helps

Filarap

Anonymous
Not applicable

Hi @filarap,

 

I can't find explain about testimp function which you used in formula, can you please provide more detail about this?

How to Get Your Question Answered Quickly

 

Regards,

Xiaoxin Sheng

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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