run query or report on new information

odun

Registered User.
Local time
Today, 10:57
Joined
Apr 24, 2005
Messages
108
Hello all:

Every week I download new information into a table. The download has all the information, but the table will spill out any information from the download that is already existing in the table.

How do I print a query or report right after the download, that will provide a list of the new information just downloaded.

Thanks for all your help!
 
The simplest solution is to add a new column to the table. Use the date datatype and set the default value to Date(). To find the records that were added on a particular day, create a query that selects records using criteria that prompts for a date.

Select * from your table where AddDate = [enter date];
 
Thanks Pat, I have included the default date thing.

Thanks.

Pat Hartman said:
The simplest solution is to add a new column to the table. Use the date datatype and set the default value to Date(). To find the records that were added on a particular day, create a query that selects records using criteria that prompts for a date.

Select * from your table where AddDate = [enter date];
 

Users who are viewing this thread

Back
Top Bottom