View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Alex[_13_] Alex[_13_] is offline
external usenet poster
 
Posts: 30
Default insering a row to spreadsheet using VB

Thanks a lot.


-----Original Message-----
You will need to know where you wish to insert the rows


insert one row at row 5

Rows(5).Insert


insert multiple rows starting at row 5
Rows("5:8").Insert


---
Message posted from http://www.ExcelForum.com/

.