go to sheet1 to sheet2

  • Thread starter Thread starter braddy
  • Start date Start date
B

braddy

Hi please,
I would like to have some help:
I woul like to transfer data from sheet1 to sheet2.

For example , if I have in sheet1

A1=12
B1=15
C1=5
D1=8
E1=9

And I want in sheet2:

A1=12
B1=15
C1=5
D1=8
E1=9

Please give me the formula. I did some research, but I did no
understand what they were talking about!!

Please Give me also the formula for A1, A2, A3 A4 (for an array) fro
sheet1 to sheet2
Please Be precise..

Thank you

Bra
 
see if this will work for you

Option Explicit
Dim lastc As Long
Sub copyrow()
lastc = Cells(1, Columns.Count).End(xlToLeft).Column
Cells(1, 1).Resize(1, lastc).Copy
Worksheets("sheet2").Range("a1").Activate
ActiveSheet.Paste
End Sub


Gary
 

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