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...
Anonymous
2 years agoNot applicable
Hi sdhn ,
You can create a measure as below to get it:
Annual Growth Rate =
VAR _begin =
CALCULATE (
SUM ( Table[Value] ),
FILTER ( Table, Table[Date] = DATE ( 2023, 7, 1 ) )
)
VAR _end =
CALCULATE (
SUM ( Table[Value] ),
FILTER ( Table, Table[Date] = DATE ( 2024, 6, 30 ) )
)
RETURN
( _end / _begin ) ^ ( 1 / [Number of Years] ) - 1
If the above ones can't help you figure out, please provide some raw data in your table (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It would be helpful to find out the solution. You can refer the following link to share the required info:
How to provide sample data in the Power BI Forum
And it is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
- sdhn2 years agoResponsive Resident