I have had this error in the past as well using:

Code:
 Sheets("RawData").Activate
'AND
Sheets("RawData").Select
Would it always be preferable to use the above method?

Code:
Application.GOTO worksheets("New Data").Cells(1)
Are there specific times when each one of these is better suited? Is one more efficient then the other?