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.
Private Sub Document_Open()
txt = InputBox("Enter text")
If txt = "" Then
'what to do if no text is entered
Else
ActiveDocument.Tables(1).Columns(1).Cells(1).Range.Text = txt
End If
End Sub