Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I want to make a shared workbook that will have 100 tabs (each an
individual's timecard) which are all hidden on entry. Only 1 page visible, HOME, where user inputs their social security number and either on enter or click a lookup process happens to figure out which sheet to unhide. User then inputs data, presses save and close buttons on sheet which hides tab again and returns the user to HOME. On HOME there is a button that will cleanup, make sure all sheets are hidden and exit the workbook. And to make it harder, supervisors will need to have multiple sheets unhidden so they can review them and approve. thanks. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Mark,
All that is possible with relatively simple coding. But you are asking a lot of contributors to create it all for you. If you made a start and came back when you have a specific question, others would help. Bear in mind : - If you are searching by SSN, it would easier to name you worksheets with this. - You can generate/use a list of worksheets with : Dim WS as worksheet for each ws in worksheets 'do something 'e.g. If WS.name=SSN then WS.Select next - Excel security is, at best, a minor inconvenience for anyone with a minute and a little curiosity. If a user really should not see the others' information, don't include it in the file. Otherwise, expect that sooner or later, one of your users will have the inclination to snoop. NickHK "Mark Warner" <Mark wrote in message ... I want to make a shared workbook that will have 100 tabs (each an individual's timecard) which are all hidden on entry. Only 1 page visible, HOME, where user inputs their social security number and either on enter or click a lookup process happens to figure out which sheet to unhide. User then inputs data, presses save and close buttons on sheet which hides tab again and returns the user to HOME. On HOME there is a button that will cleanup, make sure all sheets are hidden and exit the workbook. And to make it harder, supervisors will need to have multiple sheets unhidden so they can review them and approve. thanks. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Shared Workbook User had unsaved information disappear | Excel Worksheet Functions | |||
Shared Workbook - User Not Logging Out | Excel Discussion (Misc queries) | |||
Shared workbook: multiple user instances | Excel Discussion (Misc queries) | |||
Shared workbook does not display data... | Excel Discussion (Misc queries) | |||
Display differences in a shared Excel workbook on 2 or more PCs | Setting up and Configuration of Excel |