- For individual users
- Instant access to solutions
- Ask your tech questions
- Start your 30-day Free Trial
Main Topics
Browse All TopicsI have a SQL 2005 stored procedure that I want to execute from excel. Basically the end user needs the ability to sort and filter the results with in excel.
sample SP exec dbo.RCON_sp_TimCard '6/13/2009','0','1'
I know sql ok but I'm not familiar with VBA. I understand I would need to write some vba code within excel to call the sp as well as insert the necessary parameters.
I've tried to create an pass through SQL command in Microsoft Query but it won't let you do a pass through query.
Thanks
John b
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: zorvekPosted on 2009-06-16 at 12:56:37ID: 24641883
You are going to need to use ADODB to do this work. Below is a short tutorial.
library/de fault.asp? url=/libra ry/ en-us/a do270/htm/ mdmscadoap ireference .asp
EDB.4.0; Data Source='C:\full\path\to\da tabase.mdb '; User Id=admin; Password=;" en-us/libr ary/ms8082 01.aspx gs.com/
= MyDatabase tParam", adVarChar, adParamInput, 10, StringValue) tParam", adDouble, adParamInput, , DoubleValue) gParam", adBigInt, adParamInput, , LongValue) eParam", adDate, adParamInput, , DateValue) eTimeStamp Param", adDBTimeStamp, adParamInput, , DateTimeValue) aram", adBoolean, adParamInput, , BooleanValue) en-us/libr ary/ms8082 98.aspx
en-us/libr ary/ms8086 56.aspx
on
FromRecord set MyRecordset
.Name .Font.Bold = True
The following text and sample code illustrates how to:
-> open a database connection
-> use a stored procedure to perform a query
-> execute any SQL command against a database
-> open a recordset using a custom query
-> open a recordset using a table name
-> check for an empty recordset
-> read all records in a recordset
-> add a record to a recordset
-> delete a record from a recordset
-> copy a recordset with headers to a worksheet
-> close a recordset and database
This sample code, except for Open database method, can be used with any database such as Access, SQL Server, or Oracle. When using a database, most interaction happens via a recordset. Data is manipulated almost entirely using Recordset objects. Any number of Recordset objects can be created and used at the same time - each representing a different query or the same query. Different Recordset objects can access the same tables, queries, and fields without conflicting.
After opening a Recordset the Recordset can contain zero or more records. One record in the Recordset is always the current record except when the Recordset BOF or EOF property is true in which case no record is the current record. The current record is the record that is affected by any record-specific methods. To move amongst the records in a Recordset use the MoveNext, MovePrevious, MoveLast, and MoveFirst Recordset methods. A specific record can be made the current record by setting the AbsolutePosition property to the index number of the desired record. Fields in the current record are access as illustrated below.
Value = MyRecordset!Field1
MyRecordset!Field2 = Value + 1
When the current record is changed use the Update method to apply the changes to the database. Use the Add method to add a new record and the Delete method to delete the current record. The Add method can be used even if the query returns an empty recordset.
Caution about using the RecordCount method: The RecordCount for a serverside recordset may return a -1. This occurs with ActiveX Data Objects (ADO) version 2.0 or later when the CursorType is adOpenForwardonly or adOpenDynamic and when with ADO 1.5 only when the cursortype is adOpenForwardonly. To get around this problem use either adOpenKeyset or adOpenStatic as the CursorType for server side cursors or use a client side cursor. Client side cursors use only adOpenStatic for CursorTypes regardless of which CursorType is selected.
Before writing any ADODB code the data objects library "Microsoft ActiveX Data Objects x.x Library" must be referenced in the VBA project (Tools->References).
For additional information on the ADODB interface see the MSDN pages at:
http://msdn.microsoft.com/
Sample code:
Dim MyDatabase As ADODB.Connection
Dim MyCommand As ADODB.Command
Dim MyRecordset As ADODB.RecordSet
Dim Column As Long
' Open database connection
Set MyDatabase = New ADODB.Connection
MyDatabase.CursorLocation = adUseClient
MyDatabase.Open "Provider=Microsoft.Jet.OL
' For more information about Open syntax:
' http://msdn.microsoft.com/
' Additional help constructing connection strings can be found at http://www.connectionstrin
' Query database using stored procedure (requires command object)
Set MyCommand = New ADODB.Command
Set MyCommand.ActiveConnection
MyCommand.CommandText = "qrySomeQuery" ' <- name of procedure
MyCommand.CommandType = adCmdStoredProc
With MyCommand
.Parameters.Refresh
.Parameters.Append .CreateParameter("QueryTex
.Parameters.Append .CreateParameter("QueryTex
.Parameters.Append .CreateParameter("QueryLon
.Parameters.Append .CreateParameter("QueryDat
.Parameters.Append .CreateParameter("QueryDat
.Parameters.Append .CreateParameter("BooleanP
' For more information about CreateParameter syntax:
' http://msdn.microsoft.com/
End With
' Open recordset using command object
Set MyRecordset = New ADODB.Recordset
MyRecordset.Open MyCommand, , adOpenDynamic, adLockPessimistic
' For more information about Open method syntax:
' http://msdn.microsoft.com/
' Build a custom query using command object
Set MyCommand = New ADODB.Command
With MyCommand
Set .ActiveConnection = MyDatabase
.CommandType = adCmdText
.CommandText = "SELECT * From tblMyTable WHERE (tblMyTable.MyID = 1)"
End With
MyRecordSet.Open MyCommand, , adOpenDynamic, adLockReadOnly
' Execute any SQL statement
MyDatabase.Execute "INSERT INTO TableName (Field1, Field2) VALUES ('" & Range("A1").Value & "','" & Range("A2").Value & "')"
' Open a recordset by specifying specific table (no query)
MyRecordset.Open "TableName", MyDatabase, adOpenDynamic, adLockPessimistic
' Open a recordset by specifying query without using command object
MyRecordset.Open "SELECT * FROM MyTable", MyDatabase, adOpenDynamic, adLockPessimistic
' Test for no records
If MyRecordset.BOF And MyRecordset.EOF Then
MsgBox "No records in table"
End If
' Determine total records (see notes above about inconsistencies with the RecordCount method)
MsgBox "Total records: " & MyRecordset.RecordCount
' Look at all records in record set
While Not MyRecordset.EOF
MsgBox "Record number: " & MyRecordset.AbsolutePositi
MyRecordset.MoveNext
Wend
' Find a specific record given a field value
MyRecordset.MoveFirst
MyRecordset.Find "ID='ABC123'"
If Not MyRecordset.BOF And Not MyRecordset.EOF Then
MyRecordset!Field1 = "Match Found"
MyRecordset.Update
End If
' Copy the entire recordset to a worksheet (this technique does not copy field names)
Sheets("Sheet1").[A2].Copy
' Create headers and copy data
With Sheets("Sheet1")
For Column = 0 To MyRecordset.Fields.Count - 1
.Cells(1, Column + 1).Value = MyRecordset.Fields(Column)
Next
.Range(.Cells(1, 1), .Cells(1, MyRecordset.Fields.Count))
.Cells(2, 1).CopyFromRecordset MyRecordset
End With
' Update current record
MyRecordset!Field1 = "Some data"
MyRecordset!Field2 = "Some more data"
MyRecordset.Update
' Move specific fields from current record to worksheet
With Sheets("Sheet1")
Cells(Row, "A") = MyRecordset!Field1
Cells(Row, "B") = MyRecordset!Field2
End With
' Add new record and set field values
MyRecordset.AddNew
MyRecordset!Field1 = "Some data"
MyRecordset.Update
' Update an existing record or add it if it does not exist
MyRecordset.MoveFirst
MyRecordset.Find "Field1='"& SourceSheet.Cells(Row, "A") & "'"
If MyRecordset.BOF Or MyRecordset.EOF Then
MyRecordset.AddNew
End If
MyRecordset!Field1 = SourceSheet.Cells(Row, "A")
MyRecordset!Field2 = SourceSheet.Cells(Row, "B")
MyRecordset.Update
' Delete current record
MyRecordset.Delete
' Close recordset
MyRecordset.Close
' Close database
MyDatabase.Close
Kevin