View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson[_5_] Dave Peterson[_5_] is offline
external usenet poster
 
Posts: 1,758
Default A recorded Macro to hide certain selected columns hides non selec.

with worksheets("sheet1")
.range("e:g,l:l,n:q,s:aa").entirecolumn.hidden = true
end with

If this doesn't help, you may want to post your code.

Mlmotter wrote:

I have recorded a macro to hide certain columns (E, F, G, L, N, O, P, Q,
S:AA) in a spreadsheet which when I do it manually works fine. When I run
the the macro it hides everything from B to AA. Why? How can I fix this. I
have tried just hiding one column with the macro and it still hides them all.
The Spreadsheet has merged columns, but that does not seem to be a problem
when done manually.


--

Dave Peterson