Hello,
I want to filter my data so that only the last 12 months are displayed but I want to exclude the current month from showing too.
I currently have
[OpenDate] >= DateTimeFormat(DateTimeAdd(DateTimeToday(),-12,"months"), '%Y-%m-01')
E.g. If I run this in November 2022 it will give me data from 1st November 2021 till today's date but I want it to give me data from 1st November 2021 till 31st October 2022 (i.e. no November 2022 data because this month hasn't been completed yet)
Is there any way I can action this in the same formula?
Any help is much appreciated!