I\'m trying to write a quick little macro that asks the user for an input, and then copies this to a specific cell (B14 in Sheet1). Here\'s what I\'ve got so far:
Sub updatesheet()
Dim vReply As String
Do
'edit: added UCase on INputBox
vReply = UCase(InputBox("Enter period (format: Q4 2010) to update, or hit enter to escape"))
Loop Until Len(vReply) = 0 Or vReply Like "Q# ####"
If vReply = vbNullString Then Exit Sub
'continue...
End Sub