To answer your question, yes I have but parameters in the query. It still doesn't prompt me for the input. One reason for this may be the fact that When I call this query I have an Excel workbook open that the query information will be stored in.
Here is a snippet of the code.
'open the recordset for Closed ECN's
'Set rs = db.OpenRecordset("qryClosedToday"

Set rs = db.OpenRecordset("qryClosedThisWeek"
'Insert the data from the recordset
If rs.RecordCount <> 0 Then
rs.MoveFirst
Do Until rs.EOF
With objNewXLBook.ActiveSheet.Range("C" & X & ":" & "D" & X)
.HorizontalAlignment = xlLeft
.VerticalAlignment = xlBottom
.WrapText = False
.Orientation = 0
.AddIndent = False
.IndentLevel = 0
.ShrinkToFit = False
.MergeCells = True
End With
objNewXLBook.ActiveSheet.Cells(X, 1).Value = rs![Project]
objNewXLBook.ActiveSheet.Cells(X, 2).Value = rs![ECN]
objNewXLBook.ActiveSheet.Cells(X, 3).Value = rs![DESC]
objNewXLBook.ActiveSheet.Cells(X, 5).Value = rs![Drafter]
objNewXLBook.ActiveSheet.Cells(X, 6).Value = rs![Sales Order]
objNewXLBook.ActiveSheet.Cells(X, 7).Value = rs![Date Received]
objNewXLBook.ActiveSheet.Cells(X, 8).Value = rs![Start Date]
objNewXLBook.ActiveSheet.Cells(X, 9).Value = rs![Project Status]
objNewXLBook.ActiveSheet.Cells(X, 10).Value = rs![Hrs Est]
strActTime = "SELECT Sum(tblTimePerPack.HrsWorked) AS Today " & _
"FROM tblTimePerPack WHERE fkECNID = " & dQuote & _
rs![ECN] & dQuote & "AND Date = " & "#" & Date & "#"
Set ActTime = db.OpenRecordset(strActTime)
objNewXLBook.ActiveSheet.Cells(X, 11).Value = ActTime![Today]
ActTime.Close
Set ActTime = Nothing
strActTime = "SELECT Sum(tblTimePerPack.HrsWorked) AS Total " & _
"FROM tblTimePerPack WHERE fkECNID = " & dQuote & _
rs![ECN] & dQuote
'MsgBox strActTime
Set ActTime = db.OpenRecordset(strActTime)
objNewXLBook.ActiveSheet.Cells(X, 12).Value = ActTime![Total]
ActTime.Close
Set ActTime = Nothing
I hope this will help clear up what it is I'm trying to accomplish. I thought I remembered once reading a way to call a stored procedure and send the required parameters. Maybe I was dreaming???