Hi all
I want a user to be able to check a forms checkbox. Then the result, be it TRUE or FALSE determines if his or her Application.Username appears in a cell on another sheet within the same workbook.
Something like this (but it doesnt work)
Code
If CheckBox20.Value = True Then
Worksheets("Log").Range("B6") = Application.UserName
ElseIf CheckBox20.Value = False Then
Worksheets("Log").Range("B6") = " "
End If
Thanks for your time