Forum Discussion
sdhn
2 years agoResponsive Resident
Calculate Annual Growth Rates
Hello All, I am comparing two Fiscal period. On my situation FY1 July 1 , 2023 to December 31 2023 FY2 Jan 1, 2024 to June 30 2024 Inm y Power bi report , I am showing data for both fi...
sdhn
2 years agoResponsive Resident
https://drive.google.com/file/d/1lm3YQ60jclJhDg8rS8DqvxXJzk3is4uz/view?usp=sharing
https://drive.google.com/file/d/1LN4PIsEJzf2ay5TDlT95BOomgnPizSdz/view?usp=sharing
Anonymous
2 years agoNot applicable
Hi sdhn ,
Please create a measure as below to get it:
Annual Growth Rate =
VAR _fy1 =
COUNT ( 'TD_IncBreach1FY'[Incident ID] )
VAR _fy2 =
COUNT ( 'TD_IncBreach2FY'[Incident ID] )
RETURN
( _fy2 / _fy1 ) - 1
Best Regards
- sdhn2 years agoResponsive Resident
Thanks, this is good too.
But I need for Breaches only on monthly basis. Can you assist on it? Thanks