vba copy paste values and formats

jtodd

Board Regular
Joined
Aug 4, 2014
Messages
194
Hi
I have this code Sub cpynpst()
Dim sh4 As Worksheet, sh5 As Worksheet, lr As Long, rng As Range
Set sh4 = Sheets("A Days")
Set sh5 = Sheets("WeeklyDetail")
lr = sh4.Cells(Rows.Count, 1).End(xlUp).Row
Set rng = sh4.Range("A2:A" & lr)
rng.EntireRow.Copy sh5.Cells(Rows.Count, 1).End(xlUp)(2)
End Sub

This work fine but, how would I adapt it to only copy from columns from A to D and paste special values ?

Just cannot get it to work
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
If it is only values as per your description and not values and formats as per your title then one way is

Code:
Sub cpynpst()
    Dim sh4 As Worksheet, sh5 As Worksheet, lr As Long, rng As Range
    Set sh4 = Sheets("A Days")
    Set sh5 = Sheets("WeeklyDetail")
    lr = sh4.Cells(Rows.Count, 1).End(xlUp).Row
    
    Set rng = sh4.Range("A2:A" & lr)
    
    rng.Resize(, 4).Copy
    sh5.Cells(Rows.Count, 1).End(xlUp)(2).PasteSpecial xlValues
    Application.CutCopyMode = False
End Sub
 
Upvote 0
Many thanks ,
Worked a charm,

If I did need to keep the formating would that be dificult ?:rolleyes:
 
Upvote 0
would that be dificult ?:rolleyes:
No :biggrin:
Code:
Sub cpynpst()
    Dim sh4 As Worksheet, sh5 As Worksheet, lr As Long, rng As Range
    
    Set sh4 = Sheets("A Days")
    Set sh5 = Sheets("WeeklyDetail")
    lr = sh4.Cells(Rows.Count, 1).End(xlUp).Row
    Set rng = sh4.Range("A2:A" & lr)

    rng.Resize(, 4).Copy
    With sh5.Cells(Rows.Count, 1).End(xlUp)(2)
        .PasteSpecial xlValues
        .PasteSpecial xlFormats
    End With
    
    Application.CutCopyMode = False
End Sub
 
Upvote 0

Forum statistics

Threads
1,213,534
Messages
6,114,186
Members
448,554
Latest member
Gleisner2

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