Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 | |||
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) | |||
how do I do an if then query in excel from 2 sheets? | Excel Discussion (Misc queries) | |||
Excel 2k opens 2 sheets within same window | Excel Discussion (Misc queries) | |||
Winn98SE, Excel2000: ODBC query opens the source workbook | Excel Discussion (Misc queries) |