Looping, Close Connection to Access, Faster Processing?

ilcaa

Well-known Member
Joined
May 25, 2005
Messages
751
Office Version
  1. 365
Platform
  1. Windows
i have a vba function within EXCEL that creates a connection to a Access database, and opens a query to retreive a value from Access and place it in a cell in Excel.

I now want to loop 300,000 rows in excel and run this function, so for each row, it will take 2 values and use this function to retreive data from Access. It will open and close the connection for each loop.

QUESTION: Would it be faster, more efficient, less memory usage, etc If I opened the connection within a Subroutine first and left it open during the entire 300,000 row loop then close it.

Or opening and closing the connection for each run is ok, any best practices for connecting to Access on large VBA excel loops? ** this function only retrieves 1 value not a list or array.

Code:
SUB LoopClosePrice

set rng = range("a2:a300000")

for each Cell in Rng
sym = cell.offset(0,-1)
date1 = cell.offset(0,-2)
cell.value = GetClosePrice(sym, date1)
next

END SUB

FUNCTION GetClosePrice (ticker as string, date1 as string)

dim rs as New ADODB.RecordSet
dim cn As New ADODB.Connection

cn.Open ConnectionString

Dim Query as String
query = ' query to retrieve '

rs.Open query, cn, adOpenForwardOnly, adLockReadOnly

GetClosePrice = rs.Fields(0)

set rs = Nothing
set cn = nothing
END FUNCTION
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Yes, opening and closing connections is slow.

It would be much better if you re-wrote your query so it didn't need running 300,000 times
 
Upvote 0
I think I would like to just pull all the data into Access at once. Then you can run it locally in Access. Plus (assuming you pull the data into a temp table or staging table) it can also be appropriately indexed in your staging table where you hold the data locally - another plus for faster searches.
 
Upvote 0
my query is for a retrieval of the data in Access from Excel, the 300,000 is because I have a range in Excel thats looped, and uses the query in Excel VBA to get the price. there are 7,000 U.S. stock symbols but I have 300,000 rows because I need price of a specific date. 1 symbol could have 30+ different dates, etc, thats why there are 300,000 rows to loop.

Date, Symbol, ClosingPrice
4/15/2014, GM,
09/17/2014, GM,
12/03/2014, GM,
12/20/2014, GM,
etc
etc

So yes constantly opening and closing connections makes the loop in Excel much slower. And doing this process in Access would be more efficient.

Can I port the exact VBA code from Excel to Access? Or is there some syntax adjustments I need to make?
 
Upvote 0
Well really you just need to pull the data into Access. Create a table. Done. Why loop at all? Once in Access, you access data using queries or DLookup functions.
 
Upvote 0

Forum statistics

Threads
1,221,869
Messages
6,162,530
Members
451,773
Latest member
ssmith04

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