-
Posts
105 -
Joined
-
Last visited
Community Answers
-
VixinG's post in Fixed length values in Array was marked as the answer
Great job, I was about to post two possible solutions to this.
For $j = 1 To $amount - 1 ;^ here $arr[0][$j-1] = $sAlpha & StringFormat("%03d", $j) Next ; OR For $j = 0 To $amount - 1 $arr[0][$j] = $sAlpha & StringFormat("%03d", $j+1) ;here Next