How to filter reports and send the selected ones for emailing/printing in Access 2003?
Posted Tuesday, September 7, 2010 by admin
Posted Tuesday, September 7, 2010 by admin
Posted in Programming & Design
Copyright © 2012 Online campaigns
Design by ID Themes
make a query to get the relevant record say for example :
SELECT * FROM urTable WHERE LastName =’” & “Arthur ‘”
If you have Unique Id u can use
SELECT * FROM urTable WHERE emplId=” & 8
Note the enclosed before ‘” and ‘” for string expresson for numeric no need as you will see in second example.
When you are in Print preview send it by mail.