Find numbers in column and copy row data to new sheet

omnivl

Board Regular
Joined
Aug 25, 2014
Messages
53
I have a sheet which i import and in column A i have a sequence of numbers 1,2,3,4,5 etc

1
Text
10
1
2
2
Text
7
1
1
3
Text
8
1
3

<tbody>
</tbody>

I would like to copy each row of data into a new sheet called scoring, any help would be awesome
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Why not just use this script to make a copy of the entire sheet.
This script assumes the current sheet is named "Master" modify if needed.
Code:
Sub Copy_Master()
Sheets("Master").Copy After:=Sheets(Sheets.Count)
ActiveSheet.Name = "scoring"
End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,334
Messages
6,124,319
Members
449,153
Latest member
JazzSingerNL

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top