Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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 @Anonymous
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 @Anonymous
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
@Anonymous 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.