tiredofit
Well-known Member
- Joined
- Apr 11, 2013
- Messages
- 1,935
- Office Version
- 365
- 2019
- Platform
- Windows
I have some data that consists of 10 columns.
I want to choose only those rows where columnd 10 is "Apples"
I can define an array consisting of a fixed number (10 in this case) columns and a variable number of rows, such as:
However, I would like to do this using collections instead.
My problem is how can I define a collection to input 10 columns of data?
Thanks
I want to choose only those rows where columnd 10 is "Apples"
I can define an array consisting of a fixed number (10 in this case) columns and a variable number of rows, such as:
Code:
Dim OutputArray() As Variant
ReDim Preserve OutputArray(1 to Counter, 1 to 10) As Variant
However, I would like to do this using collections instead.
My problem is how can I define a collection to input 10 columns of data?
Thanks