Hi,
I'm not sure if this is even possible, but I am trying to simply set these variables using an array and am having no luck. This syntax in the For Loop is not correct and I am not having any luck figuring it out today.
I have cut this code short for a demo.
Dim i as Integer
Dim ARR_List () As Variant
Dim INT_611_MIN As Integer
Dim INT_612_MIN As Integer
Dim INT_613_MIN As Integer
Dim INT_614_MIN As Integer
Dim INT_615_MIN As Integer
ARR_List = Array("611", "612", "613", "614", "615")
For i = 0 to 4
INT_" & ARR_List(i) & "_MIN = 10
next i
I'm not sure if this is even possible, but I am trying to simply set these variables using an array and am having no luck. This syntax in the For Loop is not correct and I am not having any luck figuring it out today.
I have cut this code short for a demo.
Dim i as Integer
Dim ARR_List () As Variant
Dim INT_611_MIN As Integer
Dim INT_612_MIN As Integer
Dim INT_613_MIN As Integer
Dim INT_614_MIN As Integer
Dim INT_615_MIN As Integer
ARR_List = Array("611", "612", "613", "614", "615")
For i = 0 to 4
INT_" & ARR_List(i) & "_MIN = 10
next i