Forum Discussion

espinozan's avatar
espinozan
Helper I
9 years ago
Solved

Creating a 12 month rolling trend report using Calendar

Hello all,   I've been trying to research the best way to create a 12 month rolling trend report in Power BI. Somehow, I can't seem to find what I'm looking for. So far, I've notived most use calcu...
  • Anonymous's avatar
    Anonymous
    9 years ago
    Aah, then try something like (untested code) :

    =IF([Date]<Today()-365;False();IF([Date]>Today();False();True()))

    Filter column by "True".