VBA code for pulling data from a closed workbook w/o opening it and direct insert into database

bharat kumar

New Member
Joined
Nov 11, 2016
Messages
2
here is code but i don't want to open it in current workbook ............

Sub GetDataFromClosedBook()
Dim mydata As String
'data location & range to copy
mydata = "='C:\[Newbook.xls]Sheet1'!$A$1:$C$12" '<< change as required
'link to worksheet
With ThisWorkbook.Worksheets(1).Range("A1:C12") '<< change as required
.Formula = mydata
'convert formula to text
.Value = .Value
Dim conn As New ADODB.Connection
Dim iRowNo As Integer
Dim RowCount As Integer
conn.Provider = "sqloledb"
'conn.Properties("Prompt") = adPromptAlways
conn.Open "Data Source=10.10.1.137;Initial Catalog=Goldmine;user id=sa;password=11"
iRowNo = 2
RowCount = 1
Do Until .Cells(iRowNo, 1) = ""
Acno = .Cells(iRowNo, 1)
batchno = .Cells(iRowNo, 2)
Amount = .Cells(iRowNo, 3)
.Cells(1, 6) = RowCount
Dim Qu As String
Qu = "insert into dbo.rough (Account_No,batchno,Amount) values ('" & Acno & "', '" & batchno & "', '" & Amount & "')"
conn.Execute (Qu)
iRowNo = iRowNo + 1
RowCount = RowCount + 1
DoEvents
Loop
End With
End Sub
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.

Forum statistics

Threads
1,216,113
Messages
6,128,905
Members
449,478
Latest member
Davenil

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