Add in a report

Pappy

Registered User.
Local time
Today, 11:05
Joined
Jun 12, 2003
Messages
28
I'm sure this is simple but I keep getting #error. I have field being pulled from a qry called Send in ##/##/#### date format. I want to either add 30 to it, or use Date Add.

[Send] + 30
dateadd("m",1,[Send])


All is appreciated
:D
 
If you are doing this in the controlSource of a control, you need to prefix the expression with the equals sign:

=dateadd("m",1,[Send])

Make sure that the name of the control is something other than Send. Rename it if necessary.
 

Users who are viewing this thread

Back
Top Bottom