Copy and Paste

  • Thread starter Thread starter Db1712
  • Start date Start date
D

Db1712

Thanks this actually worked with the exception that I should have bee
more specific. I need the value of the cell only, not the formatting

Sub test()
Sheets("Final Tally & Print Sheet").Range("G19").Copy _
Sheets("Year to Date").Range("H" & Rows.Count).End(xlUp).Offset(1
0)
End Sub


QUOTE=Ron de Bruin]Try this to copy Sheets("sheet1").Range("A1") t
Sheet2 in the A column

Sub test()
Sheets("sheet1").Range("A1").Copy _
Sheets("sheet2").Range("A" & Rows.Count).End(xlUp).Offset(1, 0)
End Sub
 
Try this

Sub test2()
Sheets("Year to Date").Range("H" & Rows.Count).End(xlUp).Offset(1, 0).Value = _
Sheets("Final Tally & Print Sheet").Range("G19").Value
End Sub
 

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