I have an Excel sheet with a four-column setup.
I'm trying to copy the content of the cells in column B to column C as long as there are active rows in any cells of these 4 columns. By that, I mean including the value a11.
This is supposed to work in an Excel template by an autorun macro to fill out a form. I have tried many ways I found on different sites but nothing works. They all seem to stop at the first blank cell in any row.
Sub Auto_Open()
With Range("B1", Range("B1").End(xlDown))
Sheets("Upload").Range("C" & Rows.Count).End(xlUp).Offset(0).Resize(.Count) = .Value
End With
End Sub
The output of my last code (posted here) ends at first empty cell.