I am trying to dynamically update different labels on a userform and was hoping there was a way to do this.

Something to the effect of:

For i = 1 to 10
LabelName = Array(i)
UserForm1.LabelName.Caption = "something"
Next i

In the above example, the array would hold the names of all the labels on the userform and I would be able to loop through and update their captions. I cannot get this to work, however.

Any tips?