I have this array, which someone else designed:
Dim EPArray(1 To 9, 1 To 3, 2000 To 2003, 1 To 12, 1996 To 2003, 1 To 12, 1 To 5, 1 To 4) As Single
This array loops through millions of records and collects the info.
The problem is that it needs to be Dim even more that it already is. When we try to go further, we get an memory error message. So I started reading some stuff about collections and how they might be the answer to my problems. I can't find any good info on how to take an array like the one above and turn it into a collection.
I need help either by explaining how to go from an array to a collection or a good resource on this. How to declare, how it would collect all of the info above and keep it together, really just any help or advice you might have.
Using Access 2000.
Thanks
Dim EPArray(1 To 9, 1 To 3, 2000 To 2003, 1 To 12, 1996 To 2003, 1 To 12, 1 To 5, 1 To 4) As Single
This array loops through millions of records and collects the info.
The problem is that it needs to be Dim even more that it already is. When we try to go further, we get an memory error message. So I started reading some stuff about collections and how they might be the answer to my problems. I can't find any good info on how to take an array like the one above and turn it into a collection.
I need help either by explaining how to go from an array to a collection or a good resource on this. How to declare, how it would collect all of the info above and keep it together, really just any help or advice you might have.
Using Access 2000.
Thanks