Query Question

L

lmossolle

I have a Query that has an Exp Date. I would like to have it pull overdue
items, for example if there was a date of 1/31/2007 I would like to see if it
was equal to or greater than the date or over due period....

Thanks,

Lee
 
M

MGFoster

lmossolle said:
I have a Query that has an Exp Date. I would like to have it pull overdue
items, for example if there was a date of 1/31/2007 I would like to see if it
was equal to or greater than the date or over due period....

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Kinda sketchy definition of your problem. My guess is you'd put the
over due date in the query's criteria:

PARAMETERS [Date over due?] Date;
SELECT *
FROM table_name
WHERE exp_date >= [Date over due?]

--
MGFoster:::mgf00 <at> earthlink <decimal-point> net
Oakland, CA (USA)
** Respond only to this newsgroup. I DO NOT respond to emails **

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBR74BvoechKqOuFEgEQIu9QCgvv3LIqVFwKnzgTqXu5CaR1giFYgAoK3A
qCsQ6ftWVkfYwJHffZJrDUkE
=U58M
-----END PGP SIGNATURE-----
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top