Forum Discussion
Inventory rotation
I want to get the turnover of the inventory of the last 12 months for each month, I already get the rotation but if I already add the column of the month shows me the rotation of the month and not the whole year, in January 2020 I would have to show me the rotation that goes from January 2020 to February 2019, in the iamgen I show the formula that I occupy for the rotations
2 Replies
- amitchandakSuper User
Syndicate_Admin , Screenshot is too small to get details.
If you need rolling 12-month formula try a measure like this example with date table
Rolling 12 = CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date ],MAX('Date'[Date ]),-12,MONTH))
or
Rolling 12 = CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date ],eomonth(MAX('Date'[Date ]),-1),-12,MONTH))
- Syndicate_AdminAdministrator
Thanks for your help, I already put a little bigger picture, it's practically the same as I've done the problem this in that I have a filter that's next
But the problem if it's in there in the table of the first example I get the rotations of the month and not those of the full year