Import data from SQL server into excel

jebenexcel

Board Regular
Joined
Mar 16, 2018
Messages
59
Hello,

I need to import data from an SQL database into an excel spreadsheet.

The query works fine in Microsoft SQL Management Studio, but I don't know how to get VBA to paste it into cell A1 of Sheet1.

I have already created the connection using data-> From other Sources->from SQL server.

This code used to do it, but I have to change it to a different server with different column names and now it doesn't work.

Code:
Sub RefreshSQL()


    Dim newsqltext As String
    
    newsqltext = "(query)"
    
    With ActiveWorkbook.Connections("SQL connection").OLEDBConnection
        .CommandText = newsqltext
    End With
    
    ActiveWorkbook.RefreshAll ' Refresh
    
End Sub
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Okay, so i figured out the code just changes the command text for an already existing connection. I changed the connection's source and just have to find a way to dynamically change the connection command text.
Any ideas?
 
Upvote 0

Forum statistics

Threads
1,223,888
Messages
6,175,217
Members
452,619
Latest member
Shiv1198

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top