hide all labels on a form if caption is empty?

jinx_uk_98

Board Regular
Joined
Jul 3, 2005
Messages
105
Hi All,

Can anyone tell me the best way to set the visable properties of all labels to false if the caption is empty?

On a similar note, anyone know how I can set the caption to all labels on a form to empty?

Many thanks
Kev
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
first answer
Code:
Private Sub UserForm_Initialize()
For Each ctl In UserForm1.Controls
If ctl.Name Like "Label*" Then
UserForm1.Controls(ctl.Name).Visible = Not (UserForm1.Controls(ctl.Name).Caption = "")
End If
Next ctl
End Sub

second
Code:
Private Sub UserForm_Initialize()
For Each ctl In UserForm1.Controls
If ctl.Name Like "Label*" Then
UserForm1.Controls(ctl.Name).Caption = ""
End If
Next ctl
End Sub
 
Upvote 0
I have combined the 2 to avoid repetition
Code:
Private Sub UserForm_Initialize()
    For Each ctl In UserForm1.Controls
        If TypeName(ctl) = "Label" Then
            ctl.Caption = ""
            '-
            If ctl.Caption = "" Then
                ctl.Visible = False
            End If
            '-
        End If
    Next ctl
End Sub
 
Upvote 0

Forum statistics

Threads
1,207,438
Messages
6,078,564
Members
446,349
Latest member
Malroos7912

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top