Forum Discussion

TonyGonzalez's avatar
TonyGonzalez
Qrew Trainee
3 months ago

Chart - Year over Year for Current Month

My customer would like to focus the information given to City Council to just the last entered month, but also wants the prior year(s) same month as well.  Here is how the chart currently looks in Excel. 

I can easily accomplish this using dynamic or standard filters.  
The challenge is, he wants this to be a rolling month. So, he really wants it to be the last/newest month entered.  We obviously don't want to go update the filter every month to only show the last entry.  I can't work out the filter, or maybe a query, to make this happen.



------------------------------
Gonzo - A Newbie, but learning fast. (Former SmartSheet evangelist who is quickly converting to QuickBase)
IT Director City of New Braunfels
------------------------------

3 Replies

  • My suggestion would be to make a report-formula of type checkbox that checks if the date is the most recent month or one year prior and then user the report formula as your filter.

    So for example the formula might be like: 

    var date current = AdjustMonth(FirstDayOfMonth(Today(),-1);

    var date prior = AdjustMonth($current,-12);

    $current = [Date in your record] or $prior = [Date in your record]

    Then in your filter you just find that report formula field and set it equal to 1 as the value since the formula will return 1 or 0 as true/false. 



    ------------------------------
    Chayce Duncan
    ------------------------------
    • TonyGonzalez's avatar
      TonyGonzalez
      Qrew Trainee

      Thanks, Chayce.  Gonna go look at that option.  I did figure out one way of doing it, but it's got a small problem in that for a day or two at the end of every month it would display either an extra month or maybe no months.  So, it's not perfect and yours sounds like it would be.  I will go try your way.  For giggles, here is the filter I created.  (I know I would have to refine the numbers in a couple of days, was just making it work based on today.)



      ------------------------------
      Gonzo - A Newbie, but learning fast. (Former SmartSheet evangelist who is quickly converting to QuickBase)
      IT Director City of New Braunfels
      ------------------------------
    • TonyGonzalez's avatar
      TonyGonzalez
      Qrew Trainee

      Thanks again, Chayce.  Worked beautifully.  I had to add a close parenthesis  after the the first one, before the comma.  You would obviously see that if you were doing this formula, so that's mainly for anyone else that comes across this thread in the future.



      ------------------------------
      Gonzo - A Newbie, but learning fast. (Former SmartSheet evangelist who is quickly converting to QuickBase)
      IT Director City of New Braunfels
      ------------------------------