View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
NickHK NickHK is offline
external usenet poster
 
Posts: 4,391
Default Compile Error - Wrong number of arguements or invalid property ass

James,
I assume this routine is not on the worksheet that you wish to change, but
in a module.
As such, "Columns" cannot be resolved. You would need a "Sheets("Report")."
in front.
Also, unless have a reason, there is no need to "Select". You can achieve
the same with:
Sheets("Report").Columns("B:AW").Hidden = True

NickHK

"James T" wrote in message
...
Created a very basic macro.

Spreadsheet has certain columns hidden and certain ones showing.

I just want the macro to hide all the columns I define (even if they are
already hidden or not)

However when I run it I get an error:

Compile Error - Wrong number of arguements or invalid property assignment.

It highlights the word "COLUMNS" in the debug.


Sub AmendReport()
'This macro unhides all columns and reopens the form for changes
Sheets("Report").Select
Columns("B:AW").Select
Selection.EntireColumn.Hidden = True
End Sub


Any thoughts?