mdnuts
Registered User.
- Local time
- Today, 15:41
- Joined
- May 28, 2014
- Messages
- 131
good morning,
I do not usually use multidimension arrays but a project i am working on has a good use for it - i just need to quickly compare data.
The table is 4 fields and about 168 records. When i use
it pulls it into an array, however the array is reqAP(167,3) instead of reqAP(3,167). I know i can iterate over the recordset and create the array - but is there a quicker way to go about it?
I do not usually use multidimension arrays but a project i am working on has a good use for it - i just need to quickly compare data.
The table is 4 fields and about 168 records. When i use
Code:
dim reqAP as Variant
reqAP = rst.GetRows(rst.RecordCount)
it pulls it into an array, however the array is reqAP(167,3) instead of reqAP(3,167). I know i can iterate over the recordset and create the array - but is there a quicker way to go about it?