Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Scenario...
I want to track the customers who walked in during a training. 5 key users will be using the shared workbook at the same time. Only one column would be available for use. All others would be password protected. The users will be able to select only "yes" from the drop down list. Once selected and saved, no user should be able to delete this from the cell. Please help. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Assumed Col A is used and rest of columns need to protect.
Ctrl + A | Ctrl +1 | protection tab | uncheck locked and hidden | ok Select all the columns except Col A , Ctrl + 1 | protection tab | check locked | ok Now go tools | protection | protect sheet | ok to share the workbook | tools | share workbook | ok On Feb 11, 12:45*pm, Fuzzy wrote: Scenario... I want to track the customers who walked in during a training. 5 key users will be using the shared workbook at the same time. Only one column would be available for use. All others would be password protected.. The users will be able to select only "yes" from the drop down list. Once selected and saved, no user should be able to delete this from the cell. Please help. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks Muddan... but I dont think you understood.
I got how to protect all columns except the Col A... my doubt is in the edit option for a cell in Col A.... user should only be able to insert a word in the cell....user should not be able to delete the same word once it has been inserted..... "muddan madhu" wrote: Assumed Col A is used and rest of columns need to protect. Ctrl + A | Ctrl +1 | protection tab | uncheck locked and hidden | ok Select all the columns except Col A , Ctrl + 1 | protection tab | check locked | ok Now go tools | protection | protect sheet | ok to share the workbook | tools | share workbook | ok On Feb 11, 12:45 pm, Fuzzy wrote: Scenario... I want to track the customers who walked in during a training. 5 key users will be using the shared workbook at the same time. Only one column would be available for use. All others would be password protected.. The users will be able to select only "yes" from the drop down list. Once selected and saved, no user should be able to delete this from the cell. Please help. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
check this one
http://www.ozgrid.com/forum/showthread.php?t=65023 On Feb 11, 2:19*pm, Fuzzy wrote: Thanks Muddan... but I dont think you understood. I got how to protect all columns except the Col A... my doubt is in the edit option for a cell in Col A.... user should only be able to insert a word in the cell....user should not be able to delete the same word once it has been inserted..... "muddan madhu" wrote: Assumed Col A is used and rest of columns need to protect. Ctrl + A | Ctrl +1 | protection tab | uncheck locked and hidden | ok Select all the columns except Col A , Ctrl + 1 | protection tab | check locked | ok Now go tools | protection | protect sheet | ok to share the workbook | tools | share workbook | ok On Feb 11, 12:45 pm, Fuzzy wrote: Scenario... I want to track the customers who walked in during a training. 5 key users will be using the shared workbook at the same time. Only one column would be available for use. All others would be password protected.. The users will be able to select only "yes" from the drop down list. Once selected and saved, no user should be able to delete this from the cell. Please help. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Fuzzy
You need event code to lock the cell after a selection is made. Private Sub Worksheet_Change(ByVal Target As Excel.Range) On Error GoTo enditall Application.EnableEvents = False If Target.Cells.Column = 1 Then Me.Protect Password:="justme", userinterfaceonly:=True If Target.Value < "" Then Target.Locked = True End If End If enditall: Application.EnableEvents = True End Sub Right-click on the sheet tab and "View Code". Copy/paste the code into that module. Edit password if you choose. To prevent users from seeing the password and code, close that Module then. Right-click on your workbook/project and select VBAProject PropertiesProtectionLock from viewing. Enter a password and save the workbook. Gord Dibben MS Excel MVP On Wed, 11 Feb 2009 01:19:02 -0800, Fuzzy wrote: Thanks Muddan... but I dont think you understood. I got how to protect all columns except the Col A... my doubt is in the edit option for a cell in Col A.... user should only be able to insert a word in the cell....user should not be able to delete the same word once it has been inserted..... "muddan madhu" wrote: Assumed Col A is used and rest of columns need to protect. Ctrl + A | Ctrl +1 | protection tab | uncheck locked and hidden | ok Select all the columns except Col A , Ctrl + 1 | protection tab | check locked | ok Now go tools | protection | protect sheet | ok to share the workbook | tools | share workbook | ok On Feb 11, 12:45 pm, Fuzzy wrote: Scenario... I want to track the customers who walked in during a training. 5 key users will be using the shared workbook at the same time. Only one column would be available for use. All others would be password protected.. The users will be able to select only "yes" from the drop down list. Once selected and saved, no user should be able to delete this from the cell. Please help. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
protect worksheet but allow row deletion | Excel Worksheet Functions | |||
Protect files from deletion | Excel Discussion (Misc queries) | |||
Protect worksheet from deletion | Excel Discussion (Misc queries) | |||
protect a file from deletion | Excel Discussion (Misc queries) | |||
protect formula in cell and still allow data deletion | Excel Discussion (Misc queries) |