Guest_imported
New member
- Jan 1, 1970
- 0
Hi, I have this array of numbers, but they were stored as strings, I want to convert them to integers, so I used the following code
for i = 0 to UBound(arrTest)
arrTest(i) = CInt(arrTest(i))
next
but it's giving me the error msg Overflow : 'Cint'
How can I fix it?
for i = 0 to UBound(arrTest)
arrTest(i) = CInt(arrTest(i))
next
but it's giving me the error msg Overflow : 'Cint'
How can I fix it?