To set the criteria to show dates on the first day of the previous month:
DateSerial(Year(Date()), Month(Date())-1,1)
To set the criteria to show dates on the last day of the previous month:
DateSerial(Year(Date()), Month(Date()),0)
But what criteria do you enter into a query to show the first day of the previous week? And last day of the previous week?
DateSerial(Year(Date()), Month(Date())-1,1)
To set the criteria to show dates on the last day of the previous month:
DateSerial(Year(Date()), Month(Date()),0)
But what criteria do you enter into a query to show the first day of the previous week? And last day of the previous week?