I'm using the following code to run queries:
--
Dim stQuery As String
stQuery = 'INSERT SQL HERE'
DoCmd.SetWarnings False
DoCmd.OpenQuery stQuery, acNormal, acEdit
DoCmd.SetWarnings True
--
Is there a way of seeing how many records the query returns?
--
Dim stQuery As String
stQuery = 'INSERT SQL HERE'
DoCmd.SetWarnings False
DoCmd.OpenQuery stQuery, acNormal, acEdit
DoCmd.SetWarnings True
--
Is there a way of seeing how many records the query returns?