I’m using the following formula to flag records which were created “current month, last year”.
DATETIME_FORMAT({Order Received}, "YYYY-MM") = DATETIME_FORMAT(DATEADD(NOW(), "year", -1), "YYYY-MM")
Any suggestions on how to modify this to flag records created “last month, last year” ? E.g. If it is Nov 2019 now, it would flag records created in Oct 2018.