T
Tysone
I tired to get an answer for this over in excel.function over the last
week, but I wasn't able to get an answer. Hopefully someone over here
that doesn't check that will be able to help me out.
Here is my problem. I have this macro that takes a line and copies it
to the end of a list on another tab. The one problem? I need it to
Paste special - Values. And if you can write a better macro then this
one that does what I need, please do. I just need it to work
correctly.
Thanks
Tyson
Sub copytolist()
Sheets("Data Enter").Activate
Range("A2:C2").Copy Destination:=Sheets("Data List") _
.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0)
End Sub
week, but I wasn't able to get an answer. Hopefully someone over here
that doesn't check that will be able to help me out.
Here is my problem. I have this macro that takes a line and copies it
to the end of a list on another tab. The one problem? I need it to
Paste special - Values. And if you can write a better macro then this
one that does what I need, please do. I just need it to work
correctly.
Thanks
Tyson
Sub copytolist()
Sheets("Data Enter").Activate
Range("A2:C2").Copy Destination:=Sheets("Data List") _
.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0)
End Sub