hi all,
after copying cell E2 to the last used row in coloum C on sheet "saw list" i want to copy it down to the last used row on that sheet. but i can seem to get the destination right??
LastrowSL = Worksheets("Saw List").UsedRange.Rows.Count
Lastcell = Worksheets("Saw List").Cells(Rows.Count, "C").End(xlUp).Row
Worksheets("Windows").Range("E2").Copy _
Destination:=Worksheets("Saw List").Range("C" & Lastcell + 1)
Worksheets("Saw List").Range("C" & Lastcell + 1).Copy _
Destination:=Worksheets("Saw List").Range("C" & LastrowSL + 1)
after copying cell E2 to the last used row in coloum C on sheet "saw list" i want to copy it down to the last used row on that sheet. but i can seem to get the destination right??
LastrowSL = Worksheets("Saw List").UsedRange.Rows.Count
Lastcell = Worksheets("Saw List").Cells(Rows.Count, "C").End(xlUp).Row
Worksheets("Windows").Range("E2").Copy _
Destination:=Worksheets("Saw List").Range("C" & Lastcell + 1)
Worksheets("Saw List").Range("C" & Lastcell + 1).Copy _
Destination:=Worksheets("Saw List").Range("C" & LastrowSL + 1)