selmo,
Boa tarde!
Faça assim:
Private Sub UserForm_Initialize()
Dim Lbl As Control
Dim i As Long
Dim Num As String
For Each Lbl In UserForm1.Controls
If Left(Lbl.Name, 5) = "Label" Then
For i = 1 To Len(Lbl.Name)
If IsNumeric(Mid(Lbl.Name, i, 1)) Then
Num = Num & Mid(Lbl.Name, i, 1)
Lbl.Caption = "nome" & Num
Exit For
End If
Next
Num = ""
End If
Next
End Sub
Desenvolvo pequenas soluções em VBA Excel a valores que variam entre R$ 50,00 a R$ 200,00. Se te interessar, entre no meu instagran (vba_excel_desenvolvimento)
Atenciosamente
Wagner Morel
Postado : 16/11/2015 1:04 pm