Userform1.Controls(i) already indexes all the controls. But it doesn't split them out by type.
What kind of control is Progress Bar1?
I'll assume that ProgressBar1 is a name that you gave to the control. This should create an array of the controls, ProgressBars.
Sub createProgressBarArray()
Dim xControl As Object
Dim ProgressBars() As Object
Dim xIndex As Integer, j As Integer
xIndex = 1
ReDim ProgressBars(1 To 1)
With UserForm1
For Each xControl In .Controls
If Left(xControl.Name, 11) = "ProgressBar" Then
ReDim ProgressBars(1 To xIndex)
Set ProgressBars(xIndex) = xControl
End If
Next xControl
For xIndex = 1 To UBound(ProgressBars)
For j = xIndex To UBound(ProgressBars)
If Val(Mid(ProgressBars(xIndex).Name, 12)) > Val(Mid(ProgressBars(xIndex).Name, 12)) Then
xControl = ProgressBars(xIndex)
ProgressBars(xIndex) = ProgressBars(j)
ProgressBars(j) = xControl
End If
Next j
Next xIndex
End With
End Sub
Bookmarks