Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
pro_x
Helper I
Helper I

Percentage growth previous year

Hi,

 

I have this excel formula that i need to convert to power bi =year2/year1 - 1

I would like to calculate the growth rate using year 2 Month 4 divided by the previous year's, previous month (year 1 month 3)

How would i write this in power bi?

pecentage growth 2.PNG

5 REPLIES 5

Hi @pro_x ,

 

was your problem solved?

 

 

Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast


harshnathani
Community Champion
Community Champion

Hi @pro_x ,

 

Assuming you have a Dates Table.

 

1.jpg

 

 

Create Measures

 

Sales Amount = SUMX ( Sales, Sales[Quantity] * Sales[Net Price] )

 

Sales Amount LY = CALCULATE(Sales[Sales Amount], SAMEPERIODLASTYEAR('Date'[Date]))

 

Growth = DIVIDE(Sales[Sales Amount],Sales[Sales Amount LY])

 


Regards,

Harsh Nathani


Appreciate with a Kudos!! (Click the Thumbs Up Button)

Did I answer your question? Mark my post as a solution!

 

amitchandak
Super User
Super User

@pro_x , For Change % prefer divide(curr -prior,prior)

For Year and YTD refer

YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD('Date'[Date],"12/31"))
Last YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD(dateadd('Date'[Date],-1,Year),"12/31"))
This year Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD(ENDOFYEAR('Date'[Date]),"12/31"))
Last year Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD(ENDOFYEAR(dateadd('Date'[Date],-1,Year)),"12/31"))
Last to last YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD(dateadd('Date'[Date],-2,Year),"12/31"))
Year behind Sales = CALCULATE(SUM(Sales[Sales Amount]),dateadd('Date'[Date],-1,Year))

 

refer to my blog

https://medium.com/@amitchandak.1978/power-bi-ytd-questions-time-intelligence-1-5-e3174b39f38a

AntrikshSharma
Community Champion
Community Champion

=
DIVIDE (
    [Measure],
    CALCULATE ( [Measure], SAMEPERIODLASTYEAR ( Dates[Date] ) )
)
spg_vizcube
Helper II
Helper II

What will you do in case of Year 2 Month 1? 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors