cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
kelly008
Helper I
Helper I

Absolute Percentage Difference

Hello,

 

I am currently trying to get the absolute percentage difference between 2 time values, but I'm struggling to get it to work.

 

I have this table:

kelly008_0-1667820406622.png

I need the following calculation: Run_Time/SFI_Total_Posted_Run_Time x 100

 

However the calculation I use doesnt work:

 

PercentDiff = CALCULATE(
SUM(RoutingLinesNew[Run_Time])/
SUM(routinglinesnew[sfi_total_posted_run_time]*100))
 
Any help would be greatly appreciated.
Thanks!



1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@kelly008 , you have to create a measure like

 

Divide(

SUM(RoutingLinesNew[Run_Time]),
SUM(routinglinesnew[sfi_total_posted_run_time]))

 

and mark that as % column

 

Please remember the two are not equal

Run_Time/SFI_Total_Posted_Run_Time <>

Divide(

SUM(RoutingLinesNew[Run_Time]),
SUM(routinglinesnew[sfi_total_posted_run_time]))



!! Microsoft Fabric !!
Microsoft Power BI Learning Resources, 2023 !!
Learn Power BI - Full Course with Dec-2022, with Window, Index, Offset, 100+ Topics !!
Did I answer your question? Mark my post as a solution! Appreciate your Kudos !! Proud to be a Super User! !!

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@kelly008 , you have to create a measure like

 

Divide(

SUM(RoutingLinesNew[Run_Time]),
SUM(routinglinesnew[sfi_total_posted_run_time]))

 

and mark that as % column

 

Please remember the two are not equal

Run_Time/SFI_Total_Posted_Run_Time <>

Divide(

SUM(RoutingLinesNew[Run_Time]),
SUM(routinglinesnew[sfi_total_posted_run_time]))



!! Microsoft Fabric !!
Microsoft Power BI Learning Resources, 2023 !!
Learn Power BI - Full Course with Dec-2022, with Window, Index, Offset, 100+ Topics !!
Did I answer your question? Mark my post as a solution! Appreciate your Kudos !! Proud to be a Super User! !!

Helpful resources

Announcements
May 2023 update

Power BI May 2023 Update

Find out more about the May 2023 update.

Submit your Data Story

Data Stories Gallery

Share your Data Story with the Community in the Data Stories Gallery.

Top Solution Authors