I am set up a number of variables which will then be fed into a dynamic array.
Each of the array elements need to be a specific length and
I can set the string ones like so
Dim stringe1 As String * 15
(setting the length at 15)
How do the same for numerics
I can format a numberic variable like so
number=Format(shtUpload.Cells(5, 16), "0000.00")
but can I do something similar with "Dim
Each of the array elements need to be a specific length and
I can set the string ones like so
Dim stringe1 As String * 15
(setting the length at 15)
How do the same for numerics
I can format a numberic variable like so
number=Format(shtUpload.Cells(5, 16), "0000.00")
but can I do something similar with "Dim