specific data selection/pasting

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I want to select the last row of data entered from sheet1 (which is being
added to all the time) and paste certain bits of this into another sheet.
eg
copy the data from cells A1-A10 from sheet1 (being the last data entered)and
paste the data from cell A1 into cell F35 on a second sheet, the data from A2
onto D29 on the second sheet and so on.
Once all this data has been pasted onto the second sheet I then want to
print the final copy.
Can this be done using a macro, if so any ideas to the script??
thanks
 
left us a little short the "and so on" part.
A1-A10 sound more like the first row or headers????
With ActiveSheet
lastrow = .Cells(Rows.Count, "A").End(xlUp).Row
sheet2.Range("f35").value = _
Range("A & lastrow").value
Sheet2.range("D29").value = _
range("A & lastrow").value
'and.so.on
end with
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top