N
norika
Selecting 'Group Sheet' and hide column using VBA.
Sheets(Array("sheet1", "sheet2", "sheet3")).Select
Sheets("sheet1").Activate
Range("A:A,D:F,J:J,N:O").Select
Selection.EntireColumn.Hidden = True
The result was only "Sheet1" can hide the column, the other cannot.
Any ideas?
Norika
Sheets(Array("sheet1", "sheet2", "sheet3")).Select
Sheets("sheet1").Activate
Range("A:A,D:F,J:J,N:O").Select
Selection.EntireColumn.Hidden = True
The result was only "Sheet1" can hide the column, the other cannot.
Any ideas?
Norika