View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default Select all but header row???

with activesheet
.rows("2:" & .rows.count).select
end with

is one way.

Meltad wrote:

Whats the macro code to select all cells except row 1????


--

Dave Peterson