Here's my code to copy the range available in SH and paste it into A1. This works fine for the first time, for the second time code pastes the copied value in A1 again I need that to be looped as B1, C1, D1..etc Please help.
VBA Code:
SH = ThisWorkbook.Worksheets(4).Cells(Rows.Count, 19).End(xlUp).Row - 1
For A = 2 To SH
Importworkbook.Worksheets(1).Range(Sheets("Sheet3").Range("T" & A).Value).Copy ThisWorkbook.Worksheets(2).Range("[B]A1[/B]")
Next A