Hi - Been a while, but I'm hoping to find a way to fix a limitation on a reconciliation tool I designed a while back to compare two extracts from an SQL database.
In particular I'm having trouble on memory limitations when Resizing a Variant array:
ReDim Ukey(1 To MyDict.Count, 1 To ((H - 1) * 3) + 2)
This equates to a Redim of Ukey (1 To 221, 1 To 58589)
Which is c13m values. I thought there was a limitation of about 25m, but I cant recall why I thought that. Anyway, any thoughts on a workaround?
Context is that I have a primary key stored in MyDict and Each files values in a separate Array. I resize this 3rd array to combine both and add a comparison column as well, then parse the data in through loops (tried using Dictionary print previously, but that is even more limited in size, so had to rewrite it).
Thoughts appreciated.
In particular I'm having trouble on memory limitations when Resizing a Variant array:
ReDim Ukey(1 To MyDict.Count, 1 To ((H - 1) * 3) + 2)
This equates to a Redim of Ukey (1 To 221, 1 To 58589)
Which is c13m values. I thought there was a limitation of about 25m, but I cant recall why I thought that. Anyway, any thoughts on a workaround?
Context is that I have a primary key stored in MyDict and Each files values in a separate Array. I resize this 3rd array to combine both and add a comparison column as well, then parse the data in through loops (tried using Dictionary print previously, but that is even more limited in size, so had to rewrite it).
Thoughts appreciated.