Cell values as captions

T

TUNGANA KURMA RAJU

Can it be possible to use sheet cell values as captions (lables) in user forms
 
R

Ron de Bruin

Hi TUNGANA

Yes, when you open the userform you can add code in the Initialize event

Private Sub UserForm_Initialize()
Me.Label1.Caption = Sheets("sheet1").Range("A1").Value
End Sub
 
Top