Please advise, how to insert a row to Excel spreadseet from VB. Thanks
M mudraker Jan 21, 2004 #2 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
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