I have this code in one command button in UserForm2:
Private Sub CButton1_Click() UserForm1.Show Me.Hide End Sub
Now, Userfor
Userfor
Change to this:
Private Sub CButton1_Click() Me.Hide UserForm1.Show Unload Me End Sub Private Sub CButton2_Click() Me.Hide UserForm2.Show Unload Me End Sub