• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

DAX Query to Calculate Weekly Growth using Week Number

bbaduniq

New Member
Hi,

I have data having Cols [Revenue] and [Week#] , how should i calculate Week over week growth for all the weeks,

Weeks are in range 1-52

i was using : Calculate(Sum('Data'[Revenue]), 'Data'[Week] = 'Data'[Week]-1)

likewise i have data on Quarters number [-10 to 10] where 0 is curr qtr and -1 is prev qtr, also, fiscal month number also.

so the output table should be able to provide

Week# ,Rev, Week-Growth
1 ,23
2 ,34 ,48%
3 ,56 ,65%
4 ,67 ,20%

Pls help
 
Last edited:
Back
Top