Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Public Property Get TextValue() As Variant
TextValue = TextBox1.Text
End Property
Private Sub CommandButton1_Click()
Label1 = UserForm1.TextValue
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
UserForm1.Show False
UserForm2.Show False
End Sub
Public Sub showforms()
userform1.Show False
userform2.Show False
End Sub