This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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 fiscal year by monthly as :
Now I want to displays
Now I need to display Calculate Annual Growth Rates,.
How can I display Calculate Annual Growth Rates onto there port? Any help will be appreciated. Thanks
Thansk
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
Thanks, this is good too.
But I need for Breaches only on monthly basis. Can you assist on it? Thanks
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
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |