Alteran
Board Regular
- Joined
- Nov 25, 2009
- Messages
- 117
I am trying to get VBA to allow me to select a specific range of cells to copy, however it keeps giving me an error when I do the range select, I have tried this two different ways and still get the same issue can anyone help me out with this?
#1:
#2
#1:
Code:
'Select the data wanted
Sheets("Combined Data").Select
Range("A3:BN3").Select
'Copies the Data
Selection.Copy
'Back to original Sheet
Sheets("Administration").Select
#2
Code:
'Select the data wanted
Worksheets("Data2").Range("A3:BN3").Select
'Copies the Data
Selection.Copy