Forum Discussion
Need help on calculating running SL
- 3 years ago
Hi sam_rea_02 ,
Please click on below link to download the pbix file,
Need help on calculating running SL.pbixThanks!
Inogic Professional Services Division
Power Platform and Microsoft Dynamics 365 CRM Development – All under one roof!
Drop an email at [email protected]
Services: http://www.inogic.com/services/
Power Platform/Dynamics 365 CRM Tips and Tricks: http://www.inogic.com/blog/
- 3 years ago
Hi SamInogic ,
the solution is working. thanks for the help.
Hi sam_rea_02 ,
You can follow below steps to get this output within your table,
1. Create an Index column using Query editor as shown in the below screenshot,
2. Create a column with below DAX expression,
Calculated Data = 'Sample Data'[Calls Handled] * 'Sample Data'[ Interval]
3. Then create another column “Running SL with DAX expression,
Running SL = CALCULATE (
SUM('Sample Data'[Calculated Data]),
ALL ( 'Sample Data' ),
'Sample Data'[Index] <= EARLIER ( 'Sample Data'[Index] )
)/CALCULATE (
SUM ( 'Sample Data'[Calls Handled]),
ALL ( 'Sample Data' ),
'Sample Data'[Index] <= EARLIER ( 'Sample Data'[Index] )
)
Please refer to the below screenshot for output,
Thanks!
Inogic Professional Services Division
Power Platform and Microsoft Dynamics 365 CRM Development – All under one roof!
Drop an email at [email protected]
Services: http://www.inogic.com/services/
Power Platform/Dynamics 365 CRM Tips and Tricks: http://www.inogic.com/blog/
Hi SamInogic ,
Thanks for answering. I have applied all the steps you have mention but the output is not correct.
Please see attached screenshot.
- sam_rea_023 years agoFrequent Visitor
Will be okay to share the pbix? Thanks in advance
- SamInogic3 years agoSuper User
Hi sam_rea_02 ,
Please click on below link to download the pbix file,
Need help on calculating running SL.pbixThanks!
Inogic Professional Services Division
Power Platform and Microsoft Dynamics 365 CRM Development – All under one roof!
Drop an email at [email protected]
Services: http://www.inogic.com/services/
Power Platform/Dynamics 365 CRM Tips and Tricks: http://www.inogic.com/blog/
- sam_rea_023 years agoFrequent Visitor
Hi SamInogic ,
the solution is working. thanks for the help.