I know that if we want to check if a recordset is empty (no records found) we are doing like this:
If rst.BOF And rst.EOF Then
Open in new window
How I can do the exactly opposite? To check if the recordset
has records?
How can we write
IS NOT BOF
Open in new window
and
IS NOT EOF?
Open in new window