Currently using .Range (G4) to determine number of blank rows. However, what I need is for the range to be entire column G:G (that are not null). A better way?
Ultimately, I'm copying down Row based on G. Using the below. So probably an easier route than this.
Code:
With ws
Set NBOFROWS = .Range(G4)
ActiveCell.EntireRow.Offset(1).Resize(NBOFROWS.Value).Insert Shift:=xlDown
End With
Ultimately, I'm copying down Row based on G. Using the below. So probably an easier route than this.
Code:
Columns("A:A").Select
Selection.SpecialCells(xlCellTypeBlanks).Select
Selection.FormulaR1C1 = "=R[-1]C"