Import External Data by Date

R

Rubie

I have a query setup in an Excel spreadsheet that imports external data from
SQL. All of the data is imported but, I only want the data for the current
date imported daily. Can this be done?
 
S

ShaneDevenshire

Yes, if the database is storing the date, but please show us the SQL of the
current query.
 
R

Rubie

Thanks Shane,
This is the SQL=> SELECT tblLeak.TestResult, tblLeak.DateAdded
FROM Database.tblLeak tblLeak
WHERE (tblLeak.TestResult='B') OR (tblLeak.TestResult='C')
 
Top