What function can I use in Excel VBA to slice an array?
|
|
|
|
|
|
|
Application.WorksheetFunction.Index(array, row, column) If you specify a zero value for row or column, then you'll get the entire column or row that is specified. Example: Application.WorksheetFunction.Index(array, 0, 3) This will give you the entire 3rd column. If you specify both row and column as non-zero, then you'll get only the specific element. There is no easy way to get a smaller slice than a complete row or column. EDIT: Here's the function I wrote to do all my 1D and 2D slicing:
|
|||
|
|
|
|
You can use a combination of the Rows, Columns, Offset and Resize properties to get a subset of a range. For example if you have a range that is 5 columns by 3 rows:
You can get any subset by appropriately combining the above properties. For example, if you want to get the rightmost 3 cells on the second row (i.e. "C2:E2" in the above example), you could do something like:
You could then wrap this up in a VBA function. |
||
|
|
|
How about Array = Split(variable) |
||
|
|
|
Two things, VBA doesn't support array slicing so whatever you use, you'll have to roll your own. But since this is just for Excel, you can use the build in worksheet function index for array slicing.
|
||
|
|
