Sub missive()
Set s2 = Sheets("Sheet2")
ActiveCell.EntireRow.Copy
s2.Range("B1").PasteSpecial Transpose:=True
End Sub
For test purposes, I used "Sheet2" as the name of the destination sheet.

Signature
Gary''s Student - gsnu200787
> Yes, It will alsays paste into B1 (paste special as value with transpose
> checked)
[quoted text clipped - 13 lines]
> > > I know how the process to record, and it's a very easy macro, I just don't
> > > want the macro to keep selecting the same row.
Jeremy - 19 May 2008 15:25 GMT
What If I only need the data through Column V not the entire row?
> Sub missive()
> Set s2 = Sheets("Sheet2")
[quoted text clipped - 21 lines]
> > > > I know how the process to record, and it's a very easy macro, I just don't
> > > > want the macro to keep selecting the same row.
Gary''s Student - 19 May 2008 16:05 GMT
A small change in the copy line:
Sub missive()
Set s2 = Sheets("Sheet2")
rw = ActiveCell.Row
Range("A" & rw & ":V" & rw).Copy
s2.Range("B1").PasteSpecial Transpose:=True
End Sub

Signature
Gary''s Student - gsnu200787
> What If I only need the data through Column V not the entire row?
>
[quoted text clipped - 23 lines]
> > > > > I know how the process to record, and it's a very easy macro, I just don't
> > > > > want the macro to keep selecting the same row.
Jeremy - 19 May 2008 16:15 GMT
That worked perfectly. One last question for this. I am usiny the code you
provided. How can I make it end on the Sheet2 page? Righht now it leaves
ends on Sheet1.
Gary''s Student - 19 May 2008 17:09 GMT
One additional line:
Sub missive()
Set s2 = Sheets("Sheet2")
rw = ActiveCell.Row
Range("A" & rw & ":V" & rw).Copy
s2.Range("B1").PasteSpecial Transpose:=True
s2.Activate
End Sub

Signature
Gary''s Student - gsnu200787
> That worked perfectly. One last question for this. I am usiny the code you
> provided. How can I make it end on the Sheet2 page? Righht now it leaves
> ends on Sheet1.