Sub mySheetData()
'
'By Joe Was
'This adds a sheet and names it "Test."
Sheets.Add.Name = "Test"
'This selects your new sheet and moves it after sheet "Sheet3," which could be any sheet name.
Sheets("Test").Select
Sheets("Test").Move After:=Sheets("Sheet3")
'this selects the sheet with the data and its range.
Sheets("Sheet1").Select
Range("A1:A7").Select
'This will copy and paste the data to your new sheet "Test."
Selection.Copy
Sheets("Test").Select
ActiveSheet.Paste
'At this point your data will be on the new sheet and selected for the next step.
End Sub
Hope this helps. JSW
By Joe Was 'This adds a sheet and names it "Test."