Hello and thanks for looking
I will have about 40 label boxes that are linking from a worksheet,
the info coming into these label boxes are zip codes
the label boxes are named as Lb3 to Lb40
and I would like them to format as 5 digit Zip Codes
I was thinking of putting something like this in Initialized
but I am missing something, I keep getting error messages
thank you
Thomas
I will have about 40 label boxes that are linking from a worksheet,
the info coming into these label boxes are zip codes
the label boxes are named as Lb3 to Lb40
and I would like them to format as 5 digit Zip Codes
I was thinking of putting something like this in Initialized
but I am missing something, I keep getting error messages
Code:
For j = 3 To 40
With UFZipAssigned.Controls("Lb" & j)
.Caption = Format(("Lb" & j), Value, "00000")
End With
Next j
thank you
Thomas