View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
Don Guillett Don Guillett is offline
external usenet poster
 
Posts: 10,124
Default Delete all Rows Macro


I do have xl2007 courtesy of special MicroSoft introduction but still in the
box until I get a new computer.
I assume that would work but there sure are a lot of rows....
--
Don Guillett
SalesAid Software

"Sandy Mann" wrote in message
...
Don,

Out of interest, (assuming you have XL2007), would:

Sub AllButOne()
Rows("2:" & Rows.Count).Delete
End Sub

work in all versions?

--

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings


with @tiscali.co.uk


"Don Guillett" wrote in message
...
good up until xl2007. SAVE workbook.

Sub deleteallrowsbut1()
Rows("2:65536").Delete
End Sub


--
Don Guillett
SalesAid Software

"Wanna Learn" wrote in message
...
Hello I need a macro to delete all rows except row 1 thanks