Forum Discussion
sabd80
Helper IV
1 year agoPrevious week per category
Hi, I would like to get last week volume per category. Below is the total volume for 2 dates per category. the measure is: Volume = sum(table[volume])+0 I want to get the volume of...
- 1 year ago
I found the solution from this site:
https://forum.enterprisedna.co/t/how-can-i-get-the-53-week-last-year-to-appear/18111/14
Anonymous
1 year agoNot applicable
Hi sabd80 ,
Thanks to Jpss and Ashish_Mathur for their interest in this issue. I have some other thoughts to add:
(1) This is my test data.
(2) We can create a measure.
Measure = CALCULATE(SUM('Table'[volume]),FILTER(ALLSELECTED('Table'),[category]=MAX('Table'[category]) && [Date]=MAX('Table'[Date])-7))
(3) Then the result is as follows.
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.