userform question

  • Thread starter Thread starter Dawna
  • Start date Start date
D

Dawna

how do I make it possible to click on a cell in a worksheet when the userform
is still open?
 
Hi Dawna

You will have to make the form Modeless by adding following line to form's
load event

UserForm1.Show vbModeless

Regards
Om
 
Show your UserForm (assumed to be named UserForm1 for this example) like
this...

UserForm1.Show vbModeless
 
Thank you both!

Dawna

Rick Rothstein said:
Show your UserForm (assumed to be named UserForm1 for this example) like
this...

UserForm1.Show vbModeless

--
Rick (MVP - Excel)




.
 
Back
Top