Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hello,
I need to calculate Week over Week change %.
i write the following DAX but red highlighted one has Error.
How should i change the expression?
Thanks.
Solved! Go to Solution.
Hi @Anonymous ,
Please use the below formula
Measure = VAR lastWeekAmount = CALCULATE ( SUM ( Value Sum), FILTER ( ALL ( 'Calendar' ), 'Calendar'[WeekNum] = MIN ( 'Calendar'[WeekNum] ) - 1 ) ) RETURN DIVIDE ( SUM ( Value Sum ) - lastWeekAmount, lastWeekAmount, 0 )
Regards,
Gaurav Raj Singh
LinkedIN : https://www.linkedin.com/in/gauravrajsingh/
Hi @Anonymous ,
Please use the below formula
Measure = VAR lastWeekAmount = CALCULATE ( SUM ( Value Sum), FILTER ( ALL ( 'Calendar' ), 'Calendar'[WeekNum] = MIN ( 'Calendar'[WeekNum] ) - 1 ) ) RETURN DIVIDE ( SUM ( Value Sum ) - lastWeekAmount, lastWeekAmount, 0 )
Regards,
Gaurav Raj Singh
LinkedIN : https://www.linkedin.com/in/gauravrajsingh/
Thank you very much for your help^^
@Anonymous
it worked ?
Yes it worked^^ Thanks you
By the way, i need to show Week sales as following
In this case i need to calculate This week sale and last week sale.
would you help me Dax for those?
Thank you very much again.
Hi @Anonymous ,
Try this for LastweekSales
LastWeekSales =
Var ThisWeek = Max(WeekNum)
Return
calculate(sum(sales),WeekNum = ThisWeek - 1)
Regards,
Gaurav
It worked perfect^^😊😊😊😊
How about week to date /This week sale/??
Thank you, thank you...
@Anonymous
Try this :
ThisWeekToDate =
calculate(sum(sales),WeekNum = MAX(WeekNum))
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
15 | |
10 | |
9 | |
8 | |
6 |
User | Count |
---|---|
13 | |
12 | |
11 | |
10 | |
10 |