confusion123
Active Member
- Joined
- Jul 27, 2014
- Messages
- 400
I read the contents of some data into an array using:
which usually works, unless the data is too "big", which results in the message:
Does anyone know what the limit is, ie number of rows / cols before I see this message?
Also, how can I get round this?
I'm using Excel 2010 32 bit, so is limited to 4GB of Ram. Would a 64 bit Excel help?
Thanks
Code:
Dim MyArray() As Variant
MyArray = Cells(1, 1).CurrentRegion.Value
which usually works, unless the data is too "big", which results in the message:
Code:
Run-time error '7': Out of memory
Does anyone know what the limit is, ie number of rows / cols before I see this message?
Also, how can I get round this?
I'm using Excel 2010 32 bit, so is limited to 4GB of Ram. Would a 64 bit Excel help?
Thanks