vbausr

New Member
Joined
Jan 27, 2022
Messages
4
Office Version
  1. 2021
Platform
  1. Windows
I'm getting this problem "OUT OF MEMORY", when I run my vba.

My vba basically takes various things from a online csv which grabs time, year, # of ad clicks, weather, and, it takes it from there and pastes it into my document every 5 seconds or so.

So I have an up-to-date dashboard of everything I need.

... But if I run my data updating VBA too long, it goes 'out of memory' (see image below).

So I have 2 questions, the first is the KEY question:

1) Is there a VBA by which I can periodically clear my 'cache' so that it does NOT run out of memory?


2) I find all ERROR WARNINGS in excel annoying because they shut down my document from updating without me having to press 'ok'. Is there a VBA to shut them ALL OFF?!

Thanks!


Out of memory.PNG
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Without seeing your code, perhaps saving the workbook between steps would suffice. Each time you make a change to the workbook, the buffer stores more and more information about the changes because you might elect to save all of them, or roll back some via ctl+z, and to create a backup of the file in case of abnormal termination of the app. Saving should clear the buffer. Also, you might need to set objects that you've created to Nothing in order to reclaim memory resources, but it's my understanding that these resources are recovered when the object variables go out of scope as long as they're local. That should happen when the code completes execution, but not if the parent object is still open (e.g. userform or spreadsheet) and the variables are at that level (i.e. they remain in scope).
 
Last edited:
Upvote 0
The buffer is having problems and I need to clear it as you rightly pointed out.

Saving the workbook would be too cumbersome, not really the best option.
Ctrl+z, or any manual entry is just not an option as refreshes are too frequent and memory issues are too frequent.

I'm currently looking into setting objects to nothing, not really good at vba but that's a great idea. The parent object (main sheet) stays open, so this is probably the cause of my memory buffer over-utilization.
 
Upvote 0
Why couldn't your vba routine include an automatic periodical save if you are looping? Without knowing more or seeing the code I'm just throwing darts so I hope you're ok with that. I wasn't suggesting any keyboard input, just saying what the buffer is allowing you to do.
 
Upvote 0
That may be the correct approach, but wouldn't that slow down the whole thing? It's on a 5s loop. It takes a minute to save these things sometimes. You'd have a couple seconds at most to use the document every minute.

I could be wrong, of course!
 
Upvote 0
No idea. Like I said, I can't see what you see and have no idea of performance or what the code looks like, let alone what it does. Strikes me that if it really takes a minute to save the file, you're approaching the point where Excel is no longer suitable for the task. Maybe a database will be needed one day.
 
Upvote 0
It's definitely unsuitable. The save workaround might be the 'saving' grace sadly, clunky as it happens to be for my case. Excel is just the most common way to do something basic. It also seems to have the most snags and headaches, if you do anything it's not used to. Like a really unreliable car manufacturer who mostly produces lemons. In other coding I've done, C++, HTML etc., after you make it, it works. If I had the spare time to make a proper dashboard, I would. But for now, it's the paper cut-out version.
 
Upvote 0

Forum statistics

Threads
1,214,792
Messages
6,121,612
Members
449,039
Latest member
Mbone Mathonsi

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