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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
VK_nz
Helper I
Helper I

Previous week Matrix not showing up - week group

Hi all,

 

Hoping to get pointer in right dirction. 

I have sales file where I am counting weekly sales volume by 'week group', I also want to have second colum showing previous 'week group' number (in PW column weekgroup 08/07 should show 85). I have tried 'parallel period' function without success. 

Link to my file: https://www.dropbox.com/scl/fi/6h3kw0x8matq6c3ibxccz/Sales.pbix?rlkey=dxg1flzmszw4cw1c9meuhg28x&st=y... 

 

Capture.JPG

4 REPLIES 4
Darui6
Frequent Visitor

Hi,

maybe you could a calculated column with the rank function for each week group (e.g week group 01/07 is ranked 1, then 08/07 2, then 15/07 3 and so on). https://learn.microsoft.com/de-de/dax/rank-function-dax

Then reference that rank in the calculation for the PW sales, where you use the measure for SalesVolume and say rank = rank-1.

It is giving incorrect no. to week indexCapture.JPG

Darui6
Frequent Visitor

You're almost there.

 

Try it with the following formula:

 

WeekRank = RANK(DENSE, ORDERBY(Calender[Year], DESC, Calender[FinWeekNo], DESC))

 

Capture.JPG

 

this didnt go well, previously it was considring fiscal year and starting counter at July, reseting counter at next fiscal year.

This one just index at whole date range, so when a single fiscal year is selected this will result in inaccurate count.

Thanks for your answer though.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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