Do you mean every date between the last day of last month and first day of a month 12 months before that? If so, you could get the start of the current month, First_This, as:
datetime (datepart("yyyy", CurrentDate),
datepart("m", CurrentDate), 1)
Then get Last_Month, the last day of last month:
DateAdd ("d", -1, First_This)
Then get Last_Year
DateAdd ("yyyy", -1, First_This)
Select dates that are between Last_Year and Last_Month, inclusive.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.