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 subTest()
Dim myRange As Range
Set myRange = Application.InputBox(prompt:="Sample", Type:=8)
End Sub
Sub subTest()
Dim myRange As Variant
myRange = Application.InputBox(prompt:="Sample", Type:=8)
End Sub
Sub subTest()
Dim myRange As Variant
Set myRange = Application.InputBox(prompt:="Sample", Type:=8)
End Sub
Sub subTest()
Dim myRange As Range
Set myRange = Application.InputBox(prompt:="Sample", Type:=8)
MsgBox myRange.Address
End Sub