I need especified many value for variable, my code is:
Dim Cadena (5) As string
Cadena = “11” ,“13”,“15”,“17”,“19”
What is error ?
I need especified many value for variable, my code is:
Dim Cadena (5) As string
Cadena = “11” ,“13”,“15”,“17”,“19”
What is error ?
Cadena = Array(“11” ,“13”,“15”,“17”,“19”)