Can anyone give e the syntax of how I'd create a variant array without setting the dimensions beforehand or using a range on a sheet
At the moment I basically
then set the array by finding the last row and selecting an empty space on the sheet
I'm guessing I need to use ReDim somewhere along the line but just need the syntax for setting the empty arrays dimensions which I assume are simply number of element and number of columns/
Thanks
At the moment I basically
Code:
[B]Dim unclosed_liabilities_array As Variant[/B]
Code:
[B]unclosed_liabilities_array = sht_runners.Range("BB14:BA" & LrowRunners).Value[/B]
I'm guessing I need to use ReDim somewhere along the line but just need the syntax for setting the empty arrays dimensions which I assume are simply number of element and number of columns/
Thanks
Last edited: