How to export a filtered list?

V

Van T. Dinh

Create a Query with criteria to select the Records you
want and then use that Query as the DataSource for your
export. The uery should be something like:

SELECT *
FROM [YourTable]
WHERE [PerState] = "Florida"

HTH
Van T. Dinh
MVP (Access)
 
Top