View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Protect a worksheet but allow column resize

In Excel 2000,
Not really.

You could write a macro that provides an interface to the user and then the
code resizes the column. You could do this by having your code unprotect
the sheet, size the column, protect the sheet, or using the
UserInterfaceOnly:=True property of the protection method (only available in
code).

--
Regards,
Tom Ogilvy

"Phil Jollans" wrote in message
...
Hi,

I am generating a worksheet and enabling protection and I notice that it

is
impossible to resize the columns.

Is there any way to protect a worksheet, but allow the user to resize the
columns?

I am using Excel 2000.

Phil