ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Rows (i).Insert (https://www.excelbanter.com/excel-programming/389127-rows-i-insert.html)

Josh O.

Rows (i).Insert
 
I have the below Macro to insert a row between groups of customers. Is it
possible to specify the row height of the inserted row, without changing the
height of the other rows?

Dim lastrow As Long, i As Long
lastrow = Cells(Rows.Count, 1).End(xlUp).Row
For i = lastrow To 2 Step -1
If Cells(i, 1) < Cells(i - 1, 1) Then
Rows(i).Insert.RowHeight = 15
End If
Next

Norman Jones

Rows (i).Insert
 
Hi Josh,

Try:

'=============
Public Sub Tester()
Dim lastrow As Long, i As Long

lastrow = Cells(Rows.Count, 1).End(xlUp).Row
For i = lastrow To 2 Step -1
If Cells(i, 1) < Cells(i - 1, 1) Then
Rows(i).Insert
Rows(i).RowHeight = 15
End If
Next
End Sub
'<<=============


---
Regards,
Norman


"Josh O." wrote in message
...
I have the below Macro to insert a row between groups of customers. Is it
possible to specify the row height of the inserted row, without changing
the
height of the other rows?

Dim lastrow As Long, i As Long
lastrow = Cells(Rows.Count, 1).End(xlUp).Row
For i = lastrow To 2 Step -1
If Cells(i, 1) < Cells(i - 1, 1) Then
Rows(i).Insert.RowHeight = 15
End If
Next




Norman Jones

Rows (i).Insert
 
Hi Josh,

To avoid potential problems, it is always advisable
to be explicit.

Therefore, better would be:

'=============
Public Sub Tester()
Dim WB As Workbook
Dim SH As Worksheet

Set WB = ThisWorkbook '<<=== CHANGE
Set SH = WB.Sheets("Sheet3") '<<=== CHANGE
Dim lastrow As Long, i As Long

With SH
lastrow = .Cells(Rows.Count, 1).End(xlUp).Row
For i = lastrow To 2 Step -1
If .Cells(i, 1).value < Cells(i - 1, 1).value Then
.Rows(i).Insert
.Rows(i).RowHeight = 15
End If
Next i
End With
End Sub
'<<=============


---
Regards,
Norman




All times are GMT +1. The time now is 12:02 AM.

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