Here is one way.
Private Sub CommandButton1_Click()
Dim sLogin As String
Dim sLogin2 As String
Dim blnValidLogin As Boolean
Dim rngLoginInfo As Range
Set rngLoginInfo = Intersect(Sheets("Misc Data").Range("G1").CurrentRegion, _
Sheets("Misc Data").Range("G:H"))
Do
sLogin = UCase(InputBox("Enter initials here! (CAPS only)"))
If Len(sLogin) > 0 Then
vntMatch = Application.Match(sLogin, rngLoginInfo.Columns(1), 0)
If IsError(vntMatch) Then
' invalid password
sLogin = ""
blnValidLogin = False
Else
sLogin2 = rngLoginInfo.Cells(vntMatch, 2)
blnValidLogin = True
End If
Else
' Deal with Cancel or loop again
blnValidLogin = False
If MsgBox("Do you wish to continue", vbYesNo) = vbNo Then
sLogin = "Cancel"
Else
sLogin = ""
End If
End If
Loop While Len(sLogin) = 0
If blnValidLogin Then
Call Button_Controls.Buttons_Enabled
Else
Exit Sub
End If
Sheets(1).Shapes.Range(Array("CommandButton1")).Visible = False
Sheets("Main Page").Unprotect
Sheets("Main Page").Range("E16").Value = sLogin2 & " " & Now()
Sheets("Main Page").Protect
sLogin = sLogin & " " & Now
'Begin Registry setting
'"appname:=" = Desired name you create, variable or string, preferred a string
'"section:=" = Desired name you create, variable or string
'"Key:=" = Desired name you create, variable or string
'setting:=" = variable or string
SaveSetting appname:="DTI Val_CAl Log", section:="User", _
Key:="Login", setting:=sLogin
'End registry setting
End Sub
It uses the MATCH function to check whether the initials are in column G.
There is also a prompt incase the user wants to escape the process of trying intials entry.
Bookmarks