paste help

Ks1102

Well-known Member
Joined
Jan 8, 2008
Messages
689
Hi, all
please help and learn me that's macros copy from sheet1 to sheet2 problem was here how to have rows count by C" than paste at A?


I have code that also some experts help me here.
Code:
With Sheets("WtimeSaving")

Range("A1", .Range("A" & Rows.Count).End(xlUp)).Resize(, 14).Copy

End With
Sheets("Historical").Cells(Rows.Count, "C").End(xlUp).Offset(, 1).PasteSpecial xlPasteValues
Application.CutCopyMode = False
End Sub

Thanks the help so much.
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Possibly

Code:
With Sheets("WtimeSaving")
    LR = .Range("C" & Rows.Count).End(xlUp).Row
    .Range("A1:A" & LR).Resize(, 14).Copy
End With
Sheets("Historical").Cells(Rows.Count, "A").End(xlUp).Offset(, 1).PasteSpecial Paste:=xlPasteValues
Application.CutCopyMode = False
End Sub
 
Upvote 0
Possibly

Code:
With Sheets("WtimeSaving")
    LR = .Range("C" & Rows.Count).End(xlUp).Row
    .Range("A1:A" & LR).Resize(, 14).Copy
End With
Sheets("Historical").Cells(Rows.Count, "A").End(xlUp).Offset(, 1).PasteSpecial Paste:=xlPasteValues
Application.CutCopyMode = False
End Sub
Thanks very much .
have nice day
 
Upvote 0

Forum statistics

Threads
1,224,600
Messages
6,179,836
Members
452,947
Latest member
Gerry_F

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top