Export data from SQL to Excel spreadsheet using VBA - KING OF EXCEL

Saturday, December 21, 2019

Export data from SQL to Excel spreadsheet using VBA

Just open a dummy excel workbook. Create the dummy button like below:export data from sql to excel
The buttons are in the above picture are basic shapes. And “HP-PC” is the system name. If you open the file in your system, it will show your system name. And the time is coming from system’s time. After creating the above button we will create the code.
First, we are trying to focus on the Sales Report. You need to decide what will be the TSQL code for this. For Example, we need to prepare a report which will show the Name of the person and from which territory they have sold in what amount.

First of all, we need to check the TSQL code in SQL Server. I have written a simple which will pull up the records of person name and territory name and the sum of sales amount of current year and the last year. Here is my query in SQL server.export data from sql to excel using vba
If I ran the above query in SQL Server I am getting 17 records.export data from sql to excel using vba macrosNow our intention is something different. We want the same result in Excel. You can copy the result and paste it in Excel sheet that is fine. But if you need to do the same thing every day and then you can simply copy the below code and paste it on VBA page and then connect the code with the button to get data from SQL to Excel, Please follow the below steps to get the result in Excel sheet:
  1. Press Alt + F11 to go the VBA page
  2. Paste the below code
  3. Press F5 or run the code

Code:




Option Explicit


'The part extracting the body is taken from here

'https://support.microsoft.com/en-us/kb/306125


Sub GetData()


Dim cnLogs As New ADODB.Connection

Dim rsHeaders As New ADODB.Recordset

Dim rsData As New ADODB.Recordset


Dim l_counter As Long: l_counter = 0

Dim strConn As String


Sheets(1).UsedRange.Clear

strConn = "PROVIDER=SQLOLEDB;"

strConn = strConn & "DATA SOURCE=(local);INITIAL CATALOG=LogData;"

strConn = strConn & " INTEGRATED SECURITY=sspi;"


cnLogs.Open strConn


With rsHeaders

.ActiveConnection = cnLogs


.Open "SELECT * FROM syscolumns WHERE id=OBJECT_ID('LogTable')"

'.Open "SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'LogTable'"

'.Open "SELECT * FROM LogData.INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = N'LogTable'"

'.Open "SELECT * FROM SYS.COLUMNS WHERE object_id = OBJECT_ID('dbo.LogTable')"


Do While Not rsHeaders.EOF

Cells(1, l_counter + 1) = rsHeaders(0)

l_counter = l_counter + 1

rsHeaders.MoveNext

Loop

.Close

End With


With rsData

.ActiveConnection = cnLogs

.Open "SELECT * FROM LogTable"

Sheet1.Range("A2").CopyFromRecordset rsData

.Close

End With


cnLogs.Close

Set cnLogs = Nothing

Set rsHeaders = Nothing

Set rsData = Nothing


Sheets(1).UsedRange.EntireColumn.AutoFit


End Sub



Before running the code you need to change some setting. Go to tools on VBA page and then click on the reference and then select “Microsoft ActiveX Data Objects 2.8 Library and press OK.VBA-page-Reference-ActiveX-Data-ObjectsNow we all are good to go. Now press F5 to run the code. You will notice the same records are there in the excel sheet. Now if the data or any record is updated in the base table in SQL Server you will get the update result. Now all the time you will get the live data. That’s why it is powerful.

You can send the file to your manager or boss. He or she will get the updated report all the time. We need to assign the code to the button “Sales Report” we created earlier. Go to that button and then right-click on it and click on “Assign MacroSales-Report-Assign-Macro-SQL-to-Excel-4Then click on “New”. You will be redirected to the new VBA page. Just write “Call DataTakenFromSQLServer”. Finally, you are done. Whenever you click on the Sales Report you will get the updated result.VBA-page-Call-DataTakenFromSQLServer-2Now Go back to your sheet. And Click on the “Sales Report”. You will notice that the data is coming in the Excel sheet. Another one thing you will have to be careful that the SQL server service is on the form where the data is coming.Click-Sales-Report-get-Output-SQL-to-ExcelPlease download the workbook from here and check the code. Please change the SQL server name and database name to check the output of your query. You can also write your own query and check whether it is working or not. Let us know if you have any problem understanding the code. We will help you out.
#evba #etipfree
📤You download App EVBA.info installed directly on the latest phone here : https://www.evba.info/p/app-evbainfo-setting-for-your-phone.html?m=1

Popular Posts