There may be other ways to do this but this works for me.
Put this in your queries Criteria in its Date field
Between Today1() And Plus30()
Add these two functions to a module
----------------------------
Public Function Plus30()
Plus30 = DateSerial(Year(Now), Month(Now), Day(Now) + 30)
End Function
---------------------
Public Function Today1()
Today1 = Format(Now, "mm/dd/yy"
End Function
------------------------
I just checked it out and it works great.
;-)
DougP, MCP
dposton@universal1.com
Ask me how Bar-codes can help you be more productive.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.