I would like to copy entire rows from mutliple sheets to a target sheet. But I would like to start the row copy from column B of the target sheet. I tried
Sheet1.Range("13:32").EntireRow.Copy Sheet5.Range("2:21")
that works fine but starts from column A of target sheet, sheet5 ; I then tried
Sheet1.Range("13:32").EntireRow.Copy Sheet5.Range("B2:21")
but gives an error. Can you please help?
Thanks a lot, Electra