I have a VB script that works in 2003 great but will not work in 2007

rcirone

Active Member
Joined
Mar 12, 2009
Messages
483
Office Version
  1. 365
Platform
  1. Windows
I got this VB script last time here. And it works great in 2003. But now we have 2007 and it does not work can you help me.


Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$3" And Target.Value = "HideDues" Then
ActiveSheet.Unprotect ("cover")
Range("M:M,O:O,Q:Q,S:S,U:U,W:W,Y:Y,AA:AA,AC:AC,AE:AE,AG:AG,AI:AI,AJ:AJ").EntireColumn.Hidden = True
ActiveSheet.Protect ("cover")
Else
If Target.Address = "$A$3" And Target.Value = "UnhideDues" Then
ActiveSheet.Unprotect ("cover")
Range("M:M,O:O,Q:Q,S:S,U:U,W:W,Y:Y,AA:AA,AC:AC,AE:AE,AG:AG,AI:AI,AJ:AJ").EntireColumn.Hidden = False
ActiveSheet.Protect ("cover")
End If
End If
End Sub
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Works fine for me in 2003,2007 & 2010.
Have you enabled the macro's?
Have you placed the code in the Worksheet module and not the ThisWorkBook or Standard modules?
 
Upvote 0
Works fine for me in 2003,2007 & 2010.
Have you enabled the macro's?
Have you placed the code in the Worksheet module and not the ThisWorkBook or Standard modules?

I got it to work it was the macro's.
Can not beleave I forgot
Thank you
 
Upvote 0

Forum statistics

Threads
1,215,537
Messages
6,125,386
Members
449,221
Latest member
DFCarter

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top