Objective: We would like to have WTD(Week Till Date) Last WTD and This Week vs Last Week.
Dataset: We have taken Sales data. The data is from April 2018 till April 2020. We have created a date Calendar.
Steps: We create a Date Calendar With Monday to Sunday Week, with the following week-related columns.
Week Start date="Date"[Date]+-1*WEEKDAY('Date'[Date],2)+1
Week End date="Date"[Date]+ 7-1*WEEKDAY('Date'[Date],2)
Week Number = WEEKNUM([Date],2)
Week = if('Date'[Week Number]
Marked Date Table as a Date table.
Marked Week Start Date and Sort column for Week Name
Created relation between Date Table and Order Table
Now, to have Week Vs Last Week, we will use Week Rank, and the way to go is in the filter in the manner shown below:
FILTER(ALL(‘Date’),‘Date'[Week Rank]=max(‘Date'[Week Rank])).
This Week = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Week Rank]=max('Date'[Week Rank])))
Last Week = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Week Rank]=max('Date'[Week Rank])-1))
For WTD, we will also use Weekday.
WTD = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Week Rank]=max('Date'[Week Rank]) && 'Date'[Weekday]
Pbix is attached to this blog.
My Previous Blogs – Date Difference Across Table- Direct Query Mode, Decoding Direct Query – Time Intelligence, Winner Coloring on MAP, HR Analytics, Power BI Working with Non-Standard Time Periods and Comparing Data Across Date Ranges
Connect on LinkedIn
Be the first to comment