I\'m trying to write a macro that copies the content of column 1 from sheet 1 to column 2 on sheet 2. This is how the module looks like but, when I run it, I get
Selecting is often unnecessary. Try this
Sub OneCell() Sheets("Sheet2").range("B1:B3").value = Sheets("Sheet1").range("A1:A3").value End Sub