Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Last Date entered

Status
Not open for further replies.

southboy

Programmer
Oct 23, 2002
26
US
I have a bills database and I need to find the last date paid for each bill in the bills table so I can start weeding out bills I don't pay on anymore. I'm tring to do this in a query but can't seen to get it. I've tried using the MAX, DMAX, DMIN, datediff and between dates to not avail.
Any suggestions?
 
You should be able to use something on the lines of:


SELECT BillID, Max(Date) FROM tblBills GROUP BY BillID
 
That worked GREAT! Perfect! Your Awesome Remou!
Thanx for the help!
Southboy
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top