So I have a data type called events, and I would like to count all thoose entries that have been submitted within a month. So that in my finished product it will look like this: 29 Events this month.
Thanks in advance !
So I have a data type called events, and I would like to count all thoose entries that have been submitted within a month. So that in my finished product it will look like this: 29 Events this month.
Thanks in advance !
This should get you started:
This uses the date the event was created in the database, but you could use any date field you’d like to track.
Thanks, I will try that!