Dear All,
I would like to ask for your support. What I am trying to do is to create a table where I will be to sum of the last 12 Months.
I could achieve that by creating the below:
Solved! Go to Solution.
hi @ppatris
From your formula we could know that you are using built-in date hierarchy of power bi for calculation.
So for your case, you could add a new measure as below:
Measure = IF(ISBLANK(MAX('Dates EDM'[Date])),BLANK(),[12m rolling])
Result:
Regards,
Lin
hi @ppatris
From your formula we could know that you are using built-in date hierarchy of power bi for calculation.
So for your case, you could add a new measure as below:
Measure = IF(ISBLANK(MAX('Dates EDM'[Date])),BLANK(),[12m rolling])
Result:
Regards,
Lin
@ppatris have you tried using a data slicer and limiting the range? what exactly are you trying to do?
Proud to be a Super User!
@vanessafvg Hi Vanessa,
There are no dates furtherly than Jan-2020 into my calendar. The reason why i see more dates is because it sums 12 months before. That means that on December 2020 it will find the info of Jan-20 and it will show it.
thanks for your support.