It is a good idea to include the title and default arguments to provide the user with a little help in knowing what to enter.
Sub GetRes() Dim retValue As String retValue = InputBox("Enter your name.", "Name", "First, Last") End Sub