Hi all, following basic example:
Sub testing2()
Dim THG As Variant
THG = InputBox("Try")
If THG = vbNullString Then THG = "Blank"
Sheet4.Range("C30") = THG
End Sub
I would like to input "Blank" in the field if the user hits OK, but if the user hits cancel I would like the original...