Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Parameter Query -Recordset problem

Status
Not open for further replies.

jonnj

Programmer
Jun 20, 2003
29
0
0
US
I am trying to export a parameter query into a template excel sheet. If I run the query as a select query, the code runs perfectly, however I can seem to find the right code to do this as a parameter query. What eventually I would like to do, is have this execute from a combo box on a form.

The code is as follows. (this code is not mine, I found it and tweaked it so far for my needs)

Private Sub Command7_Click()

Const strcXLPath As String = "C:\\united lacrosse\teamtemp.xlsx"
Const strcWorksheetName As String = "Sheet1"
Const strcCellAddress As String = "A6"

Const strcQueryName As String = "qtestexport"

Dim objXL As Excel.Application
Dim objWBK As Excel.Workbook
Dim objWS As Excel.Worksheet
Dim objRNG As Excel.Range

Dim objDB As DAO.Database
Dim objQDF As DAO.QueryDef
Dim objrs As DAO.Recordset
'Dim objrs As Recordset

On Error GoTo Error_Exit_SaveRecordsetToExcelRange


Set objDB = CurrentDb()
Set objQDF = objDB.QueryDefs(strcQueryName)
Set objrs = objQDF.OpenRecordset
Set objQDF = CurrentDb.QueryDefs(strcQueryName)

' Sql = "SELECT GeneralInfo.[Helmet] , GeneralInfo.[LastName], GeneralInfo.[FirstName], GeneralInfo.Positions, GeneralInfo.Grade, GeneralInfo.highschool, GeneralInfo.[Phone Number], GeneralInfo.Address, GeneralInfo.City, GeneralInfo.State, GeneralInfo.[ZipCode] FROM GeneralInfo WHERE (((GeneralInfo.[Select Teams] = Me.[SelectTeam])))"




Set objXL = New Excel.Application
objXL.Visible = True
Set objWBK = objXL.Workbooks.Open(strcXLPath)
Set objWS = objWBK.Worksheets(strcWorksheetName)
Set objRNG = objWS.Range(strcCellAddress)
objRNG.CopyFromRecordset objrs




GoSub CleanUp

Exit_SaveRecordsetToExcelRange:

Exit Sub

CleanUp:


Set objRNG = Nothing
Set objWS = Nothing
Set objWBK = Nothing
Set objXL = Nothing


If Not objrs Is Nothing Then
objrs.Close
Set objrs = Nothing
End If
Set objQDF = Nothing
Set objDB = Nothing

Return

Error_Exit_SaveRecordsetToExcelRange:

MsgBox "Error " & Err.Number _
& vbNewLine & vbNewLine _
& Err.Description, _
vbExclamation + vbOKOnly, _
"Error Information"

GoSub CleanUp
Resume Exit_SaveRecordsetToExcelRange

End Sub

If I try to run this as a parameter query it bombs on : Set objrs = objQDF.OpenRecordset

I have tried many things to make this work but have been unable to code this correctly to do so.

Any suggestions for solutions will be greatly appreciated.

Thx
John
 
I would either open a sql statement or apply the SQL to a saved query:
Code:
Sql = "SELECT [Helmet] , [LastName], [FirstName], Positions, " & _
  "Grade, highschool, [Phone Number], Address, City, State,[ZipCode] " & _
  "FROM GeneralInfo WHERE [Select Teams] =""" & Me.[SelectTeam] & """"
This assumes SelectTeams is a single text/string value.


Duane
Hook'D on Access
MS Access MVP
 
Duane,
Thx for the reply.

I understand what you mean, and what I have done is added a combo box to a form and in the query criteria I have now have:

forms![fexp]![text0].

This however still errors out at:
Set objrs = objQDF.OpenRecordset.

It's frustrating because I dont undertand why the parameter query stops at this point.

I have seen examples of codes were the sql is used or what I have above but am unsure where it goes in the code.

Thanks
John
 
C:\\united lacrosse\teamtemp.xlsx" ??

I assume you mean "C:\united lacrosse\teamtemp.xlsx" >> single
HTH << MaZeWorX >> "I have not failed I have only found ten thousand ways that don't work
 
thanks dhookum and Mazeworx for the reply.

I got it working, I created a strsql and positioned properly and also I had edit some table field names that I had to then edit in the query.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top