thedeadzeds
Active Member
- Joined
- Aug 16, 2011
- Messages
- 451
- Office Version
- 365
- Platform
- Windows
Guys, I have found this code which works great for me but i want to paste the data into the 'All data' sheet as values. I cant for the life of me figure out where to put the paste special code. I have tried several different ways but not joy. Can anyone help?
Code:
Sub CopyRange() Dim bottomD As Integer
Dim ws As Worksheet
For Each ws In Sheets(Array("A", "B", "C", "D"))
ws.Activate
bottomD = Range("N" & Rows.Count).End(xlUp).Row
Range("A2:N" & bottomD).Copy Sheets("All Data").Cells(Rows.Count, "A").End(xlUp).Offset(1, 0)
Next ws
End Sub