How to filter reports and send the selected ones for emailing/printing in Access 2003?
Let’s say if I have 10 records but would only want to email the 8th record report, what should I do?
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.
December 27th, 2009 at 12:56 pm
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.
References :