Reference InputBox from Application : InputBox « Language Basics « VBA / Excel / Access / Word
- VBA / Excel / Access / Word
- Language Basics
- InputBox
Reference InputBox from Application
Public Sub InputBoxTest()
Dim Answer As Range
Set Answer = Application.InputBox(prompt:="Enter range", Type:=8)
End Sub
Related examples in the same category