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!

Limit records in update query

Status
Not open for further replies.

psbsmms

Programmer
Dec 14, 2001
74
I have a database for collections and I am triing to mail 200 letters a week and mark the client table with date of last mailing. So far I can select query limit to the top 200 however when I try to change the current select query to an update one I loose the ablity to count records. What I would like to do is make one button that runs the select query, prints the report and then updates the client table with last date of mailing. I am totally unfamilure with ADO and DAO recordsets as I am a recent convert from an tottaly different database program.
 
Have you tried using 2 queries? If you create the Select query (limiting it to the top 200 records) and save it, then create a separate Update query based on the Select query, would that work?

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top