andydtaylor
Active Member
- Joined
- Feb 15, 2007
- Messages
- 360
- Office Version
-
- 2016
Hi,
Please could someone tell me why the below code to pick up array values from worksheet doesn't work if 'thisarray' is decaired as double? My values were (9,8,7;6,5,4;3,2,1)
I suspect I'm about to learn something fundamental!
Thanks,
Andy
Please could someone tell me why the below code to pick up array values from worksheet doesn't work if 'thisarray' is decaired as double? My values were (9,8,7;6,5,4;3,2,1)
I suspect I'm about to learn something fundamental!
Thanks,
Andy
Code:
Sub test3()
Dim thisarray As Variant
thisarray = Selection.Value
Stop
End Sub