I want the below macro to leave the user on cell A3 in the sheet "Crew Satisfaction Data" but for some reason it leaves the user on a different sheet ("Response Calculator") that isn't mentioned at all in the Macro.
Can anyone tell me why and how I can fix it?
Ewan :O)
Can anyone tell me why and how I can fix it?
Sub SORTING_DATA()
'
' SORTING_DATA Macro
'
'
Columns("C:C").Select
Selection.Copy
Application.CutCopyMode = False
Sheets("Tidied CS Data").Select
Columns("B:E").Select
Selection.ClearContents
Sheets("Raw CS Data").Select
Selection.Copy
Sheets("Tidied CS Data").Select
Range("B1").Select
ActiveSheet.Paste
Sheets("Raw CS Data").Select
Columns("F:G").Select
Application.CutCopyMode = False
Selection.Copy
Columns("F:H").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Tidied CS Data").Select
Range("C1").Select
ActiveSheet.Paste
Sheets("Crew Satisfaction Data").Select
Range("A3").Select
End Sub
Ewan :O)
Last edited: