P Patrick C. Simonds Jul 31, 2009 #1 I am looking for the ability (in vba) to hide column AD without actually selecting it.
R Rick Rothstein Aug 1, 2009 #3 Here is another way... ActiveSheet.Columns("AD").Hidden = True By the way, the sheet doesn't have to be active to do this. Assuming Sheet1 is the ActiveSheet, here is how to hide Column AD on Sheet2... Worksheets("Sheet2").Columns("AD").Hidden = True or, if you want to do it via a variable... WSname = "Sheet2" Worksheets(WSname).Columns("AD").Hidden = True
Here is another way... ActiveSheet.Columns("AD").Hidden = True By the way, the sheet doesn't have to be active to do this. Assuming Sheet1 is the ActiveSheet, here is how to hide Column AD on Sheet2... Worksheets("Sheet2").Columns("AD").Hidden = True or, if you want to do it via a variable... WSname = "Sheet2" Worksheets(WSname).Columns("AD").Hidden = True