No cancel on input
How can i make an inputbox...popup, that does not have a cancel
button?
Is this possible? This is the code i have that i would like to
elimitate the cancel button.
Sub Auto_Open()
name = Range("A2")
A2 = name
If A2 = "" Then
A2 = InputBox("Entra tu Nombre ", "Nombre .")
Else
End If
Worksheets("Sheet1").Range("A2").Activate
ActiveCell = A2
End Sub
|