Forum Discussion

romoguy15's avatar
romoguy15
Helper IV
4 years ago
Solved

Total Count Last 5 Quarters including current quarter

Hello,   I hope this particular question has not been beaten to death but I am trying to do a simple total count of my data to show the last 5 quarters from Q4 2020 thru Q4 2021. I have a fiscal ca...
  • parry2k's avatar
    4 years ago

    romoguy15 I have to tweak the measure, realized that you have different fiscal quarters, use this measure:

     

    Last 5 Quarters Including Current Quarter v2 = 
    VAR CurrentQuarter = CALCULATE ( MIN ('Calendar'[Sequential Quarter] ), 'Calendar'[Date] = TODAY() )
    VAR StartingQuarter = CurrentQuarter - 3
    VAR Result =
    CALCULATE
    (
        [Total Tickets],
        'Calendar'[Sequential Quarter] >= StartingQuarter,
        'Calendar'[Sequential Quarter] <= CurrentQuarter
    
    )
    RETURN Result

     

     

    Follow us on LinkedIn and  to our YouTube channel

     

    Learn about conditional formatting at Microsoft Reactor

    My latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

     

    Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.