michaelsmith559
Well-known Member
- Joined
- Oct 6, 2013
- Messages
- 881
- Office Version
- 2013
- 2007
I need help with vba and array. Array's are hard for me to grasp, so need some help. I am wanting to input a large data set into an array. I want the array to remove the first three characters and return the results to a new sheet. In the example below, range(a1:e5) is the example data that would be put into the array and range(a7:e11) is how I would want the results. The data set is large from A1:K1048576 & L1:L568678. I have no clue how to put this into an array let alone work through it efficiently. Any help will be much appreciated. Thanks.
mm combinations.xlsm | |||||||
---|---|---|---|---|---|---|---|
A | B | C | D | E | |||
1 | 1, 2, 3, 4, 5 | 2, 7, 10, 41, 52 | 3, 15, 34, 64, 67 | 4, 43, 44, 50, 53 | 6, 18, 26, 49, 52 | ||
2 | 1, 2, 3, 4, 6 | 2, 7, 10, 41, 53 | 3, 15, 34, 64, 68 | 4, 43, 44, 50, 54 | 6, 18, 26, 49, 53 | ||
3 | 1, 2, 3, 4, 7 | 2, 7, 10, 41, 54 | 3, 15, 34, 64, 69 | 4, 43, 44, 50, 55 | 6, 18, 26, 49, 54 | ||
4 | 1, 2, 3, 4, 8 | 2, 7, 10, 41, 55 | 3, 15, 34, 64, 70 | 4, 43, 44, 50, 56 | 6, 18, 26, 49, 55 | ||
5 | 1, 2, 3, 4, 9 | 2, 7, 10, 41, 56 | 3, 15, 34, 65, 66 | 4, 43, 44, 50, 57 | 6, 18, 26, 49, 56 | ||
6 | |||||||
7 | 2, 3, 4, 5 | 7, 10, 41, 52 | 15, 34, 64, 67 | 43, 44, 50, 53 | 18, 26, 49, 52 | ||
8 | 2, 3, 4, 6 | 7, 10, 41, 53 | 15, 34, 64, 68 | 43, 44, 50, 54 | 18, 26, 49, 53 | ||
9 | 2, 3, 4, 7 | 7, 10, 41, 54 | 15, 34, 64, 69 | 43, 44, 50, 55 | 18, 26, 49, 54 | ||
10 | 2, 3, 4, 8 | 7, 10, 41, 55 | 15, 34, 64, 70 | 43, 44, 50, 56 | 18, 26, 49, 55 | ||
11 | 2, 3, 4, 9 | 7, 10, 41, 56 | 15, 34, 65, 66 | 43, 44, 50, 57 | 18, 26, 49, 56 | ||
Sheet3 |