Is it possible to insert the row as a merged range from column 1-7 (A:G) and set it to black fill with white bold text?
This is what im currently using but I am not sure how to integrate it since the blank row location will be dynamic depending on the data
This is what im currently using but I am not sure how to integrate it since the blank row location will be dynamic depending on the data
Code:
Sub IRCV()
Dim lRow As Long
For lRow = Cells(Cells.Rows.Count, "D").End(xlUp).Row To 2 Step -1
If Cells(lRow, "D") <> Cells(lRow - 1, "D") Then Rows(lRow).EntireRow.Insert
Next lRow
End Sub