Compile Error

  • Thread starter Thread starter MyMel
  • Start date Start date
M

MyMel

I receive a compile error message when using this function. What should I
do.

Range: DateAdd('d',5,[Ov]![MainDate])

Thank you,

Melody
 
A little more info please. What is the 5 for, what is the OV for, and what is
the MainDate for?
 
you may want to try a . not a ! and ! is used to reference forms not
fields in a table.

Range: DateAdd('d',5,[Ov].[MainDate])
 
Back
Top