ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Unprotect from Forms Listbox (https://www.excelbanter.com/excel-programming/320206-unprotect-forms-listbox.html)

[email protected]

Unprotect from Forms Listbox
 
Using Excel 2000, I have a simple macro to hide or show a column
depending on the choice made from a list box (forms) control on the
worksheet:

Sub ModelSelect_Change()
On Error Resume Next
ActiveCell.Activate
ActiveSheet.Unprotect
If Range("ModelSelect").Value = 1 Then
'Hide it
Columns("E:E").Select
Selection.EntireColumn.Hidden = True
Else
'Show it
Columns("D:F").Select
Selection.EntireColumn.Hidden = False
End If
ActiveSheet.Protect
End Sub

However, the unprotect fails and Excel tells me "the cell or chart you
are trying to change is protected....", etc. and tells me to remove the
protection which is, of course, what the macro is attempting to do!
Where am I going wrong?
Cheers......Mike


JulieD

Unprotect from Forms Listbox
 
Hi

i get the same error message if the cell linked to the listbox is
protected - so unprotect the sheet first, choose this linked cell, choose
format / cells / protection, untick locked, then your code should work fine
(BTW not sure what activecell.activate actually achieves).

Cheers
JulieD

wrote in message
oups.com...
Using Excel 2000, I have a simple macro to hide or show a column
depending on the choice made from a list box (forms) control on the
worksheet:

Sub ModelSelect_Change()
On Error Resume Next
ActiveCell.Activate
ActiveSheet.Unprotect
If Range("ModelSelect").Value = 1 Then
'Hide it
Columns("E:E").Select
Selection.EntireColumn.Hidden = True
Else
'Show it
Columns("D:F").Select
Selection.EntireColumn.Hidden = False
End If
ActiveSheet.Protect
End Sub

However, the unprotect fails and Excel tells me "the cell or chart you
are trying to change is protected....", etc. and tells me to remove the
protection which is, of course, what the macro is attempting to do!
Where am I going wrong?
Cheers......Mike




Harald Staff

Unprotect from Forms Listbox
 
"JulieD" skrev i melding
...

(BTW not sure what activecell.activate actually achieves).


Hi Julie

It's generally useful for Excel 97 where ActiveX controls on worksheets tend
to take focus, resulting in no selection, no active cell and a few less
logical side effects. (Not saying that one should write 97 compatible code
as a rule, but activecell.activate doesn't limit or harm anything.)

Best wishes Harald



JulieD

Unprotect from Forms Listbox
 
Hi Harald

thanks for the clarification.

Cheers
JulieD

"Harald Staff" wrote in message
...
"JulieD" skrev i melding
...

(BTW not sure what activecell.activate actually achieves).


Hi Julie

It's generally useful for Excel 97 where ActiveX controls on worksheets
tend
to take focus, resulting in no selection, no active cell and a few less
logical side effects. (Not saying that one should write 97 compatible code
as a rule, but activecell.activate doesn't limit or harm anything.)

Best wishes Harald





[email protected]

Unprotect from Forms Listbox
 
Thanks a lot, Julie, it works fine now. Something that simple has
caused me so much grief today!
Cheers....Mike


[email protected]

Unprotect from Forms Listbox
 
Thanks a lot, Julie, it works fine now. That little problem caused me
so much grief today!
Cheers....Mike



All times are GMT +1. The time now is 12:23 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com