The logic for this is fairly easy. Here's how to get the start and end dates of last month.
LastMonthStart = Date(Year(dateadd('m', -1, CurrentDate)), Month(dateadd('m', -1, CurrentDate)), 1)
Last Month End = Date(Year(CurrentDate), Month(CurrentDate), 1) - 1
-Dell