I have a report with date parameters (start and end). Is there some way to pull only those records which had data entered on todays date? or yesterdays? Help.
For today, set [start] = Date() or Format(Now, "Short Date" and [end] = Date() + 1 (or Format (Now() + 1, "Short Date"
Variations on this theme should be pretty obvious.
The 'trick' here is to understand that "dates" are stored as Double type, witht the integer (long) part as the offset from a starting date and the decimal part reresenting the time (actually proportion of the day). Now is th e whole thing (Integer and decimal). Date is JUST the integer.
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.