how to know quantity of rows selected

  • Thread starter Thread starter David
  • Start date Start date
D

David

when I select multiple rows in a database, I don't see any
number anywhere that tells me how many rows I selected.
Please let me know how to determine how many rows I've
selected.

Please e-mail me direct: (e-mail address removed)

THANKS!
 
when I select multiple rows in a database, I don't see any
number anywhere that tells me how many rows I selected.
Please let me know how to determine how many rows I've
selected.

If this means you are using table datasheets to manage your data, then
don't! It is always better to use forms: that's what they are there for.

If you want to select random records, then the easiest way is probably to
use a listbox set to multi-select, and inspect the Selected() method array.

HTH


Tim F
 
Back
Top