Using SQL to extract results

tiredofit

Well-known Member
Joined
Apr 11, 2013
Messages
1,900
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
I have a workbook with two worksheets, Data and Results.

Data contains data from cell J11 to K17 and I want to summarise it.

This code gets data from Data and pastes the results onto Results:

Code:
Option Explicit

Sub GetData()
 
        Dim cn As ADODB.Connection
    
        Dim rs As ADODB.Recordset
          
        Set cn = New ADODB.Connection
          
        Set rs = New ADODB.Recordset
          
        rs.CursorLocation = adUseServer
      
        Dim strcon As String
      
        strcon = "Provider=Microsoft.ACE.OLEDB.12.0;" & _
                      "Data Source=" & ThisWorkbook.FullName & ";" & _
                      "Extended Properties=""Excel 12.0 Macro;" & _
                      "HDR=Yes;" & _
                      "IMEX=1;" & _
                      "MaxScanRows=0"";"
      
        cn.Open ConnectionString:=strcon
      
        Dim strSQL As String
      
        strSQL = "SELECT [Data$].[Name], Sum([Data$].[Num]) AS [Metric]" & _
                        "FROM [Data$]" & _
                        "GROUP BY [Data$].[Name]"
        
        rs.Open Source:=strSQL, ActiveConnection:=cn
      
        Results.Cells(1, 1).CopyFromRecordset rs
                      
        rs.Close
        cn.Close
      
        Set rs = Nothing
        Set cn = Nothing
      
        Set cn = New ADODB.Connection
        Set rs = New ADODB.Recordset
      
End Sub

What I don't understand is how the code knows where the data is?

These lines:

Code:
    "Data Source=" & ThisWorkbook.FullName & ";" & _

and

Code:
    strSQL = "SELECT [Data$].[Name], Sum([Data$].[Num]) AS [Metric]" & _
                    "FROM [Data$]" & _
                     "GROUP BY [Data$].[Name]"

specifies the data is within the workbook (as opoosed to an external database or spreadsheet) but it doesn't refer to a range or cell on the sheet Data.

I experimented by copying the data on Data to cell B21 to C27 and changed the metric values to be 10 times the original.

The code still "used" the values in cells J11.

I moved the data in cells B21 to cell B1.

The code now "used" the values in cells B1.

So it appears the code reads the data from the highest row.

Is there an explicit way to define the range?

Thanks
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Yes, you'd use [Data$B21:C27] for example. You shouldn't use ADO on open workbooks due to memory leaks though. (and it appears to be overkill for a data set that size)
 
Upvote 0
Yes, you'd use [Data$B21:C27] for example. You shouldn't use ADO on open workbooks due to memory leaks though. (and it appears to be overkill for a data set that size)
Thanks.

It was a theoretical question re the size.

Re the open workbook probelm, I suppose it would be better to save the data in a separate workbook and refer to its location in:

Code:
"Data Source=" & "C:\mydatalocation\mydata.xlsx" & ";" & _

instead.
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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