To get the criteria for your dates, just add the criteria in the query bound to your report, or within the filter if you don't want the 30 days as a constant filter.

Between DateAdd("d",-30,Date()) And Date()
Will pull data from 30 days ago until now.
If you just want things 30 days ago, remove the Between and just leave DateAdd("d", -30, Date())