enable excel workbooks when userform is open

Peter Mogford picture Peter Mogford · Dec 22, 2015 · Viewed 19k times · Source

I have a workbook that opens a user-form when the workbook is opened. This has caused a problem because it then disables all open excel workbooks so users cant make changes to other workbooks

Is there a way i can let users still edit/open other open workbooks and still keep the user-form open?

Thanks in advance

Answer

mielk picture mielk · Dec 22, 2015

You need to open user form with Modal parameter set to vbModeless:

Call UserForm.Show(vbModeless)