Hi,
I have a user form that are supposed to open a worksheet. I use
to open the proper sheet, but changes made in this sheet are made in the sheet where the form was opened, although I'm currently seeing correct sheet (selected from the user form).
Do I also need to activate the selected sheet, or is there any thing else I need to think of?
I have a user form that are supposed to open a worksheet. I use
Code:
Private Sub CommandButton2_Click()
Sheets("Rapport_Linjer").Select
Me.Hide
End Sub
Do I also need to activate the selected sheet, or is there any thing else I need to think of?