Found it:
"Between date() And date() + 30"
> Hi All,
>
[quoted text clipped - 6 lines]
>
> Thanks for any help!
>Hi All,
>
[quoted text clipped - 6 lines]
>
>Thanks for any help!
Try
BETWEEN Date() AND DateAdd("d", 30, Date())
or
>= Date() AND <= Date() + 30
I think the parentheses are necessary or Access will think you're
comparing to a text string "date".
John W. Vinson[MVP]
Tim Ferguson - 07 Jan 2005 17:52 GMT
> >= Date() AND <= Date() + 30
>
> I think the parentheses are necessary or Access will think you're
> comparing to a text string "date".
This works for me. One thing strikes me, though: what will Access do when
the clock ticks over and the record becomes invalid without being updated?
I just have a feeling that this rule should be implemented as either a
constraint on a data-entry control (rather than a table field), or else as
a query.
Just a thought
Tim F