I have a collection with a field called 'submitted' which is a date and time field. I want to count the rows of records which have a submitted date after the 1st Septmber - but this has to be the most recent september that has past.
This is basically to count how many records have been submitted in the acedemic school year (which in the UK starts in September.)
I am using this code to filter the number of rows submitted for the current month.
CountRows(Filter(colWellbeing,Month(Submitted)=Month(Now())))
But I'm not sure how to adapt the date to get records since the previous 1st September.