I have a report with a row count that changes daily. I need to autofill column C with a formula down to the last row of column B (columns A and B have different row counts, if t
let C2 Autofill the column C until the last populated cell in column B:
C2
C
B
With Sheets("Report") .Range("C2").AutoFill .Range("C2:C" & .Cells(.Rows.count, "B").End(xlUp).row) End With