VBA, There isn't enough memory to process 50K csv files, timeout at 2k queries for a search, find, copy, past, loop

InnosolInc

New Member
Joined
Sep 15, 2021
Messages
1
Office Version
  1. 2011
Platform
  1. Windows
  2. MacOS
HI,

I'm new to the forum and really new to VBA and could really use some expert assistance. This code provides a text box to "scrape many like files for keywords of your choice." It first performs a search for keywords, then once the keyword is found, takes the cell next to it and populates it on 1 spreadsheet. I added a few lines to this amazing code I found from this site, but I'm now receiving lack of memory errors. I tried to add a "save after a number of loops" loop to the code, but I've been unsuccessful. The code does everything I need it to do, but just hoping to find a way to allow it to run through all 50k CSV files. Thank you in advance!

Sub CopyRange()

Application.ScreenUpdating = False

Dim wkbDest As Workbook

Dim wkbSource As Workbook

Set wkbDest = ThisWorkbook

Dim LastRow As Long

Dim wOut As Worksheet

Dim wks As Worksheet

Dim rFound As Range

Dim strFirstAddress As String

Dim strSearch As String

Const strPath As String = "C:\Searchfolderhere\" 'change folder path to suit your needs

ChDir strPath

strExtension = Dir("*.csv*")

strSearch = InputBox("Please enter the Search Term.")

Set wOut = Worksheets.Add

wOut.Range("A1:D1") = Array("Workbook", "Worksheet", "Cell", "Text in Cell")

Do While strExtension <> ""

Set wkbSource = Workbooks.Open(strPath & strExtension)

With wkbSource

For Each wks In .Sheets

Set rFound = wks.Range("A:A").Find(strSearch, LookIn:=xlValues, lookat:=xlWhole)

If Not rFound Is Nothing Then

strFirstAddress = rFound.Address

Do

wOut.Cells(Rows.Count, "A").End(xlUp).Offset(1, 0) = wkbSource.Name

wOut.Cells(Rows.Count, "B").End(xlUp).Offset(1, 0) = wks.Name

wOut.Cells(Rows.Count, "C").End(xlUp).Offset(1, 0) = rFound.Address

wOut.Cells(Rows.Count, "D").End(xlUp).Offset(1, 0) = rFound.Value

wOut.Cells(Rows.Count, "E").End(xlUp).Offset(1, 0) = rFound.next

Set rFound = wks.Range("A:A").FindNext(rFound)

Loop While rFound.Address <> strFirstAddress

sAddr = ""

End If

Next wks

End With

wkbSource.Close savechanges:=False

strExtension = Dir

Loop

Application.ScreenUpdating = True

End Sub
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Try set to nothing to release reference counter at location below. Not sure if this works:

Rich (BB code):
wkbSource.Close savechanges:=False
Set wkbSource = Nothing
Set rFound = Nothing
strExtension = Dir

You can put DoEvents in For or Do loop to prevent freeze but will slightly prolonged execution
 
Upvote 0
Hi,​
I could share another way - could be a bit faster - if you link some sample csv text files on a files host website like Dropbox​
with a sample of a word to be searched …​
 
Upvote 0

Forum statistics

Threads
1,214,599
Messages
6,120,447
Members
448,966
Latest member
DannyC96

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