|
Re: Show first 50 records using VBA
Hi LilyMarie,
Not a complete answer for you. Switch your query to SQL view and change it from:
SELECT ...
to:
SELECT TOP 50 ...
This will give you the first 50 records.
- - - -
Beyond that you'll need to select the staff by their IDs or build a sort column in the staff table.
Cheers,
__________________
Docendo discimus.
|