J
jose
I have this macro used as a password input box. My
question is how did I mask the user entry (*******)
Sub Macro9()
Dim V1 As Variant
V1 = Application.InputBox(prompt:="Enter Password",
Type:=1 + 2)
If V1 = False Then
MsgBox "You didn't enter a number"
Else
Worksheets("SHEET1").Range("A14").Value = V1
End If
End Sub
question is how did I mask the user entry (*******)
Sub Macro9()
Dim V1 As Variant
V1 = Application.InputBox(prompt:="Enter Password",
Type:=1 + 2)
If V1 = False Then
MsgBox "You didn't enter a number"
Else
Worksheets("SHEET1").Range("A14").Value = V1
End If
End Sub