Hi, I have the following code written in Excel which calls several queries from Access.
It works fine until I call a query which contains a criteria - and by this I mean a criteria which is pre written in to the query not one which requires the user to input anything.
Can someone show me where and what to change the code to in order to be able to run and import from a query with criteria present in them?
______________________________________________________
Code:
Function ADOImportFromAccessTable(DBFullName As String, _
strQ As String, TargetRange As Range)
Dim cn As ADODB.Connection, rs As ADODB.Recordset, intColIndex As Integer
Set TargetRange = TargetRange.Cells(1, 1)
Set cn = New ADODB.Connection
cn.Open "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & _
DBFullName & ";"
Set rs = New ADODB.Recordset
With rs
.Open strQ, cn, adOpenForwardOnly, adLockReadOnly, adCmdStoredProc
For intColIndex = 0 To rs.Fields.Count - 1
TargetRange.Offset(0, intColIndex).Value = rs.Fields(intColIndex).Name
Next
TargetRange.Offset(1, 0).CopyFromRecordset rs
End With
rs.Close
Set rs = Nothing
cn.Close
Set cn = Nothing
End Function
____________________________________________________
Many thanks!