I am using a userform and have issue with the "unload me"
If I place the "unload me" before my private sub => the private sub doesn t start
If I place it after, I cannot click in the cell of the new workbook (which is what I see first on my screen when the macro is done)
Where should I put the unload me to make it work properly?
Code below:
Private Sub CommandButton3_click()
        Private_Sub
Unload Me
End Sub
Private Sub Private_Sub()
    Workbooks.Open Filename:="U:\mydocuments\Workbook.xlsx"
End Sub
Please tell me if I don t make myself clear enough.
userform? - kulapo