I have a field on a form that will contain only integer values. Based upon this, I need to run an append query a number of times. Can this be done??? If so, how!!!!
Dim i As Integer
If IsNumeric( txtNoOfAppends) Then
For i = 1 To txtNoOfAppends
DoCmd.SetWarnings False
DoCmd.OpenQuery ("qryAppendName"
DoCmd.SetWarnings True
Next i
End If
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.