Data Form question

  • Thread starter Thread starter WylieC
  • Start date Start date
W

WylieC

I have a worksheet with the titles in the first row and
data below it that is basically an address book. I would
like to have the worksheet open with a data form ready to
use. How can I do this?
Thank you.
 
Option Explicit
Sub auto_open()
With Worksheets("sheet1")
.Select
Application.DisplayAlerts = False
.ShowDataForm
Application.DisplayAlerts = True
End With
End Sub

might be ok.
 

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

Back
Top