Kori,
Just use the DateAdd function.
DateAdd(interval as String, number as Double, Date)
The interval specifies the period which you want added. This could be "m" for month or "d" for day in your case. Number is the amount of intervals that should be added (or subtracted). you have to use negative amounts to subtract. And the date is ofcourse the startingdate.
Also not that if you use only date and the hour is of no importance, you better use Date() instead of Now()
ex:
Tomorrow:
DateAdd("d", 1, Date())
Yesterday:
DateAdd("d", -1, Date())
6 hour ago (time is important so use now():
DateAdd("H", -6, Now())
Regard
Johpje