Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin 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.
I have a set of data with a Year-Week column.
I want to create a couple of measures for This Year QUS and Last Year QUS so I can see the year on year variance.
So effectively it will show Year-Week 2018-50 as one measure and 2017-50 as another.
Also, when I have a slicer with the Year-Weeks in if I selected 2018-49 it would then show 2017-49.
If I had a date column I could use SAMEPERIODLASTYEAR but unfortunately I don't
Solved! Go to Solution.
Hi @Anonymous
You may create the Year column and Week column. Then you may get the last year QUS as below.
LastYearQUS = CALCULATE ( [QUS], FILTER ( ALL ( Table ), Table[Year] = SELECTEDVALUE ( Table[Year] ) - 1 && Table[Week] = SELECTEDVALUE ( Table[Week] ) ) )
Regards,
Cherie
Hi @Anonymous
You may create the Year column and Week column. Then you may get the last year QUS as below.
LastYearQUS = CALCULATE ( [QUS], FILTER ( ALL ( Table ), Table[Year] = SELECTEDVALUE ( Table[Year] ) - 1 && Table[Week] = SELECTEDVALUE ( Table[Week] ) ) )
Regards,
Cherie
Hi @Anonymous
I would suggest you create a new thread on forum so that more community members can see it and provide advice. Please remember to post dummy data and desired result.
Regards,
Cherie
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
62 | |
61 | |
55 | |
38 | |
27 |
User | Count |
---|---|
83 | |
61 | |
45 | |
41 | |
39 |