Using data forms

G

Guest

I would like to create a worksheet where the data is entered in a data forms
dialog box.
Is there a way to set the worksheet up so that when I bring it up the data
form dialog box would automatically show?
Also is there a way that I would be be able to to switch between the data
form and the worksheet?
Thanks
 
N

Nick Hodge

You can switch between data form and worksheet by using the menu option
Data>Form... options

You could record a macro doing that and assign it to a toolbar button or one
on the sheet. If you want it presented on opening the workbook, you could
use the workbook_open() event thus

Private Sub Workbook_Open()
Worksheets("Sheet1").ShowDataForm
End Sub


--
HTH
Nick Hodge
Microsoft MVP - Excel
Southampton, England
(e-mail address removed)
 

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

Top