Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
We use Excel 03. When I protect my worksheet my list stops automatically
generating new rows. I've given permissions for people to insert & format rows. What do I need to do? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
When a spreadsheet is protected in 2003 you can not add rows to it by moving to the bottom cell of the list. The best you can do is allow the user to Insert Rows (in the Spreadsheet Protection area and unprotect the cells in the List area (Format, Cells, Protection) and then tell them to Insert a row within the list area. -- Cheers, Shane Devenshire "thebaldsoprano" wrote: We use Excel 03. When I protect my worksheet my list stops automatically generating new rows. I've given permissions for people to insert & format rows. What do I need to do? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Further to Shane's reply................
This event code will allow you to select anywhere within the List and the sheet will become unprotected for inserting/deleting rows and columns within the List only. The ListObject Range will expand with inserted rows and columns Select anywhere outside the List and sheet will re-protect. Private Sub Worksheet_SelectionChange(ByVal Target As Range) Dim objlist As ListObject Set objlist = Me.ListObjects(1) On Error GoTo ws_exit: Application.EnableEvents = False If Not Intersect(Target, objlist.Range) Is Nothing Then Me.Unprotect Password:="justme" Else With Me .Protect Password:="justme" .EnableSelection = xlUnlockedCells .EnableSelection = xllockedCells End With End If ws_exit: Application.EnableEvents = True End Sub This is sheet event code. Right-click on the sheet tab and "View Code" Copy/paste into that module. Alt + q to return to the Excel window. Gord Dibben MS Excel MVP On Thu, 11 Sep 2008 12:16:15 -0700, thebaldsoprano wrote: We use Excel 03. When I protect my worksheet my list stops automatically generating new rows. I've given permissions for people to insert & format rows. What do I need to do? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Using drop down lists on protected worksheet | Excel Discussion (Misc queries) | |||
Edit text format in non-protected cells in protected worksheet | Excel Discussion (Misc queries) | |||
Excel 2000 Lists - Insert Row in Protected worksheet | Excel Discussion (Misc queries) | |||
Excel Lists in a Protected Spreadsheet | Excel Discussion (Misc queries) | |||
How do I enable auto-expanding lists in a protected worksheet? | Excel Discussion (Misc queries) |