Dear Frinds,
I want to count the number of records a query has returened. how I can do this in Ms access.
thanks.
I want to count the number of records a query has returened. how I can do this in Ms access.
thanks.
Dim strSQL As String
strSQL = "SELECT HeadCount.Animal, HeadCount.Gender " & _
"FROM HeadCount " & _
"WHERE (((HeadCount.Animal) Like 'Cow'));"
DCount("*", strSQL)
"WHERE ((UCase(HeadCount.Animal) = 'COW'));"
Comment