flag date data

  • Thread starter Thread starter Mark Armstrong
  • Start date Start date
M

Mark Armstrong

i have a database that has data entered into it each day
and the date is rcorded for that data entry. What i want
to do is flag up the data that is say 4 days old in the
table view if possible. can anyone help pleas?
 
Mark,

You can't really do that in a table view, but you certainly
do it with a query and it looks the same. Dump all of the
fields you need to see from the table into a new query and
then put the following in the criteria line of your Date
field...

Date() - 4

--

Gary Miller
Gary Miller Computer Services
Sisters, OR
________________________
 
Back
Top