jondavis1987
Active Member
- Joined
- Dec 31, 2015
- Messages
- 425
- Office Version
-
- 2019
- Platform
-
- Windows
I have to keep making spreadsheets that pulls data from specific parts of worksheets. In this vba I'm trying to pull from Sheet 3012-EST-1604 cells F2:F15 and paste it on the active worksheet. Preferably to a cell that I have selected. I'm sure this is very basic, I just started working with this
Code:
Sub Hveem_B_Hanson()
'
' Hveem_B_Hanson Macro
'
' Keyboard Shortcut: Ctrl+Shift+B
'
Sheets("3012-EST-1604").Select
Range("F2:F15").Select
Selection.Copy
Sheets("activeWorksheet").Select
Range("F2").Select
ActiveSheet.Paste
Application.CutCopyMode = False
End Sub