I would like to create an insight card that divides the number of Last Logins in 2019 (125) against my total users (214) to show total percentage of users this year (58%). I am attempting to show this through a chart type of Progress Bar, Filled or Compartive Gauge (any suggestions appreciated).
However before I can create this, I need to use Beast Mode to adjust the Last Login column which is a date field that goes back to 2016. I need a formula that can count the Last Login dates that have a year of 2019.
I have tried in Beast Mode both a statement and a case, and neither is working.
Statement
COUNT(`Last Login`, YEAR(2019))
Case Statement:
(CASE when `Last Login`>= YEAR(2019) then COUNT(`Last Login`) end)
Any ideas how I can get it to count the 2019 dates? Thanks.