Try using this code line in the UserForm's Initialize event...INstead of Label 1 Iam looking for "Windows username"
In Message #2 , the OP clarified that he wanted the Windows' username (hence what I posted)... your code gives the Excel username.Place this macro in the code module for your userform:
Code:Private Sub UserForm_Initialize() Label1.Caption = Application.UserName End Sub