![]() |
open in form mode
Hi there
I have an file with various tabs that link the data with data on the first tab. I would lke the file to open in a form view, so that the people using the files will change the necessary information when they open the file before they go into the tabs. Is there a way to do this? -- Thank-you! Ruth |
open in form mode
Hi,
If by form view you mean the command Data, Form. Then the answer is VBA. If by form you mean a dialog box type custom form, yes but a lot more VBA. please let us know -- Thanks, Shane Devenshire "Ruth" wrote: Hi there I have an file with various tabs that link the data with data on the first tab. I would lke the file to open in a form view, so that the people using the files will change the necessary information when they open the file before they go into the tabs. Is there a way to do this? -- Thank-you! Ruth |
open in form mode
Hi Shane
Yes I mean the Data, form view. I am using Excel 2003 if that makes a difference. I have very little VBA expereince, but have been able to do some things. Do you know the VBA for this? -- Thank-you! Ruth "ShaneDevenshire" wrote: Hi, If by form view you mean the command Data, Form. Then the answer is VBA. If by form you mean a dialog box type custom form, yes but a lot more VBA. please let us know -- Thanks, Shane Devenshire "Ruth" wrote: Hi there I have an file with various tabs that link the data with data on the first tab. I would lke the file to open in a form view, so that the people using the files will change the necessary information when they open the file before they go into the tabs. Is there a way to do this? -- Thank-you! Ruth |
open in form mode
Assuming your Database is in Sheet1 and includes A1 in the range.
Adjust code to suit. Paste this into Thisworkbook module. Private Sub Workbook_Open() Sheets("Sheet1").Activate Range("A1").Select ActiveSheet.ShowDataForm End Sub To access Thisworkbook module, right-click on the Excel Icon left of "File" on menubar and select "View Code" Paste into that module. Alt + q to return to the Excel window. Save and close then re-open. Do you see what you want? Gord Dibben MS Excel MVP On Wed, 29 Oct 2008 12:39:02 -0700, Ruth wrote: Hi Shane Yes I mean the Data, form view. I am using Excel 2003 if that makes a difference. I have very little VBA expereince, but have been able to do some things. Do you know the VBA for this? |
open in form mode
Thank-you very much! It works wonderfully.
-- Thank-you! Ruth "Gord Dibben" wrote: Assuming your Database is in Sheet1 and includes A1 in the range. Adjust code to suit. Paste this into Thisworkbook module. Private Sub Workbook_Open() Sheets("Sheet1").Activate Range("A1").Select ActiveSheet.ShowDataForm End Sub To access Thisworkbook module, right-click on the Excel Icon left of "File" on menubar and select "View Code" Paste into that module. Alt + q to return to the Excel window. Save and close then re-open. Do you see what you want? Gord Dibben MS Excel MVP On Wed, 29 Oct 2008 12:39:02 -0700, Ruth wrote: Hi Shane Yes I mean the Data, form view. I am using Excel 2003 if that makes a difference. I have very little VBA expereince, but have been able to do some things. Do you know the VBA for this? |
All times are GMT +1. The time now is 04:45 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com