Trouble Assertion: It is critical to be capable to assess a person month or yr to yet another and be certain that they are equivalent. This demands us to both hide the latest month from a card because it is not complete, or clearly show the action in just about every thirty day period via the similar place in time. For instance, if it is the 15th of the thirty day period, just clearly show the very first 15 times of action in each individual month. We did not want to manually regulate playing cards each thirty day period or have to clarify why a thirty day period appears to be like so various from a different thirty day period. Answer Assertion: I was equipped to remedy this problem by making two various beast modes for the two various scenarios. If I want to exclude the current thirty day period from a card, I develop a beast manner that appears to be at the day in the dataset and checks to see if it is fewer than or equal to the final working day of the recent date’s previous month. If it is, then I assign it a price of “include”, if not I assign it a value of “exclude”. I set this beast method in my filter and filter to involve. Below is the beast method: Beast Method for such as completed months Situation WHEN `EntryDate` <= LAST_DAY(DATE_SUB(CURRENT_DATE(), interval 1 MONTH)) THEN ‘Include’ ELSE ‘Exclude’ END If I want to only show activity through the same point in time each month, I utilize the DAYOFMONTH function to evaluate whether the day is less than or equal to today’s day. I then include or exclude and drag it into the filter just like my other beast mode. This allows us to see how the current month is trending compared to the same point in time as previous months. Here is the beast mode: Beast Mode for including only up to the same point in time of each month CASE WHEN DAYOFMONTH(`EntryDate`) <= DAYOFMONTH(CURRENT_DATE()) THEN ‘Include’ ELSE ‘Exclude’ END Demo: I created a video that demonstrates how to use each function: