View Full Version : Simple Date Question for a Query


naomi
06-26-2003, 02:44 PM
I need a query that goes between two dates. The problem is the second date is not a static date. It is 90 days from the first date.

I thought the parameter should go like this:

Between [AUDIT_SETUP]![FirstMailDate] And [AUDIT_SETUP]![FirstMailDate]+90

Am I correct?

raskew
06-26-2003, 04:52 PM
Naomi-

Since you have the application in front of you, why not give your idea a try? If it doesn't work then post back with the details.

Please don't expect responders to build a similar scenario and test it when you haven't even tried it yourself.

Bob

naomi
06-27-2003, 08:12 AM
you dont have to be so mean. it was a common knowledge question. try to be more positive please!!!!!

raskew
06-27-2003, 05:04 PM
Dearest Naomi-

I do apoligize profusely for offending your delicate sensibilities!

You must understand that I'm old and cranky and tired and was brought up in a bygone era where folks were encouraged to first try to do their best to solve a problem and then, and only then, look to others for assistance in resolving their outstanding issues.

Your friend,

Bob ...the mean old--not to mention 'insensitive'--dinosaur

Steve Small
06-30-2003, 04:58 AM
Try this

Between [AUDIT_SETUP]![FirstMailDate] And DateAdd("d",90,[AUDIT_SETUP]![FirstMailDate])