user forms

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

upon entry of data in any cell in d column how do I get a user form to appear?
Thanks
BD
 
Hi Brian

You can use this event in the sheet module

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
If Target.Column = 4 Then UserForm1.Show
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top