I need a pop up imput box that asks for a long date ex Friday, April 24, 2013 then adds the date to cell I2.
I Googled looking for something like this and found
Public Function AskForResult() As String
Dim strUserResponse As String
strUserResponse = InputBox("Please Enter a Long Date")
End Function
But I can't figure out how to assign the input to the cell I2.
Thanks