Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
My question is the following:
- I use VBA in Excel, and would like to use Excel itself as a data source (Using ADO). I'd like to keep a table in excel and use SQL expression power to manipulate the data in the table (selection, grouping, filtering.), rather than using the usual Excel lookups. - This does work, but I have an annoying secondary effect with the following environment: 1) I have an (unrelated) excel session already open (Session 1) on my Windows desktop. 2) I open a new, fresh, Excel session (Session2) and open my file, with the table, and the VBA code. 3) I run the code in my file, Session2: it does work, but the unwanted effect is that my file opens itself again, as Read-Only, in the other Session1! I do not know what went wrong. It could be great if you could put me on the right tracks. Regards Public Sub Simulation3() strPathExcelFile_FILTER = ThisWorkbook.FullName Set objConnection = CreateObject("ADODB.Connection") Set objRecordSet = CreateObject("ADODB.Recordset") objConnection.Open = "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=" & strPathExcelFile_FILTER & ";" & _ "Extended Properties=Excel 8.0;" objRecordSet.Open "SELECT COUNT(*) AS resultat FROM [SHEET1$A1:IV20] WHERE [PX_LAST] 20", objConnection, adOpenForwardOnly, adLockReadOnly Simulation.Label2.Caption = objRecordSet.fields("resultat") objRecordSet.Close objConnection.Close Set objConnection = Nothing Set objRecordSet = Nothing End Sub |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Not sure if this answers your question but might be helpful.
I tried your code myself and it had the same results and re-opened the workbook again in read only mode - how strange. When you run the code from another workbook and the workbook you read is closed it works fine. Do you need to SQL against an open workbook, can it be closed ? I believe there is problems using ADO on an open workbook. You need to look at this notice http://support.microsoft.com/kb/319998 about some pitfalls. In the past I have used DAO to read an open workbook and it works ok. DAO will still allow you SQL against the sheets as you want. If you want to persue this angle I could dig out a snippet of my code that might help - just let me know and I will post here. Hope this opens the discussion more. Jack. "Nader" wrote: My question is the following: - I use VBA in Excel, and would like to use Excel itself as a data source (Using ADO). I'd like to keep a table in excel and use SQL expression power to manipulate the data in the table (selection, grouping, filtering.), rather than using the usual Excel lookups. - This does work, but I have an annoying secondary effect with the following environment: 1) I have an (unrelated) excel session already open (Session 1) on my Windows desktop. 2) I open a new, fresh, Excel session (Session2) and open my file, with the table, and the VBA code. 3) I run the code in my file, Session2: it does work, but the unwanted effect is that my file opens itself again, as Read-Only, in the other Session1! I do not know what went wrong. It could be great if you could put me on the right tracks. Regards Public Sub Simulation3() strPathExcelFile_FILTER = ThisWorkbook.FullName Set objConnection = CreateObject("ADODB.Connection") Set objRecordSet = CreateObject("ADODB.Recordset") objConnection.Open = "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=" & strPathExcelFile_FILTER & ";" & _ "Extended Properties=Excel 8.0;" objRecordSet.Open "SELECT COUNT(*) AS resultat FROM [SHEET1$A1:IV20] WHERE [PX_LAST] 20", objConnection, adOpenForwardOnly, adLockReadOnly Simulation.Label2.Caption = objRecordSet.fields("resultat") objRecordSet.Close objConnection.Close Set objConnection = Nothing Set objRecordSet = Nothing End Sub |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel Sheets Opens Itself Again After ADO Query ! Please Help It's Urgent ! | Excel Discussion (Misc queries) | |||
Excel 2007 multiple Web Query problem! URGENT! | Excel Programming | |||
Query is lost when Excel s/sheet opens | Excel Discussion (Misc queries) | |||
Microsoft Query editor opens but does not display in excel. | Excel Discussion (Misc queries) | |||
Excel 2k opens 2 sheets within same window | Excel Discussion (Misc queries) |