I know I can use the following to find the next empty row:
nextrow = Range("C" & Rows.Count).End(xlUp).Offset(1)
My question is how do a dump an array (Array(1 to 5)) into the next empty row?
I know I can use the following to find the next empty row:
nextrow = Range("C" & Rows.Count).End(xlUp).Offset(1)
My question is how do a dump an array (Array(1 to 5)) into the next empty row?