Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
That looks extremely helpful i am most grateful
-- with kind regards Spike "Patrick Molloy" wrote: you can read/write to excel workbooks as if to a daabase...here's some simple code - no error trapping - to give you the idea...the spreadsheet named as database has a nambed range, "testdata" on sheet1 Sub WriteData() Dim Conn As ADODB.Connection Dim strConn As String Dim sExcelSourceFile As String sExcelSourceFile = "E:\Excel\Excel_database\Testdatabase.xls" strConn = "Provider=Microsoft.Jet.OLEDB.4.0;Extended Properties=Excel 8.0;" strConn = strConn & "Data Source=" strConn = strConn & sExcelSourceFile Set Conn = New ADODB.Connection Conn.Open strConn With New Command .ActiveConnection = Conn .CommandText = "INSERT into testdata ([KEYV],[PROD],[COST])values( .999,'X',.888)" .CommandType = adCmdText .Execute End With Conn.Close Set Conn = Nothing End Sub "Spike" wrote: Is it possible to export data from the active workbook to a closed Excel workbook. I would like to do this monthly to a different sheet each time. I know to import data the range has to be named so i assume it is the same priciple. If this is possible i would greatly appreciate the relevant code -- with kind regards Spike |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
importing data from closed Excel workbook | Excel Programming | |||
Excel Form data to closed workbook | Excel Programming | |||
how to eport health level 7 data to excel | New Users to Excel | |||
ADO - recordset - closed excel workbook | Excel Programming | |||
how to run macro of closed excel workbook using VBA | Excel Programming |