ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   add an extra row (https://www.excelbanter.com/excel-programming/335209-add-extra-row.html)

ts

add an extra row
 
I have an excel sheet that I want to add an empty row after each row. It
should be like one with data and one empty row. How to accomplish this?
--
TS

sebastienm

add an extra row
 
Hi,

Try the following:
'--------------------------------------------------------
Sub test()
InsertSpaceRow ActiveSheet, 3, 10
End Sub

'takes a sheet , a start row number and an end row number
Sub InsertSpaceRow(Wsh As Worksheet, rowStart As Long, rowEnd As Long)
Dim i As Long

Application.ScreenUpdating = False
For i = rowEnd To rowStart Step -1
Wsh.Range(i & ":" & i).EntireRow.Insert
Next
End Sub
'------------------------------------------------------------
--
Regards,
Sébastien


"TS" wrote:

I have an excel sheet that I want to add an empty row after each row. It
should be like one with data and one empty row. How to accomplish this?
--
TS



All times are GMT +1. The time now is 03:01 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com