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.
Sub UserForm_Initialize()
Label1.Caption = Worksheets("Sheet1").Cells(1, 1).Value
End Sub
Sub Worksheet_Change(ByVal Target As Range)
UserForm1.Label1.Caption = _
Worksheets("Sheet1").Cells(1, 1).Value
End Sub