vba macro

arunpr

New Member
Joined
Apr 18, 2002
Messages
4
I have got Sheet called Team with some data like given below.


Name Team
---- -----
Marc Team1
Stacy Team2
walt Team1


Based on their names I want to to copy them to Team1 sheet and Team2 sheet.
ie IF name==marc copy him in to Team1 sheet
How do i do this using a macro
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
I need a bit more info about how your data is set up. Is Walt in a bunch of cells, only one cell or is Walt a single cell and below the Walt cell there is a bunch of info about Walt. Do you already know which team Walt goes on or do you want it to figure it out based on Walt's name? Post back with more info and I'll see what I can write up.
 
Upvote 0
All the names are in column A and all the Team in column B. I already know which name goes to which Team. What I want do is to move these guys to their respective Team sheets from the main sheet which contains all the Names and Sheets



On 2002-04-19 14:49, cornbread wrote:
I need a bit more info about how your data is set up. Is Walt in a bunch of cells, only one cell or is Walt a single cell and below the Walt cell there is a bunch of info about Walt. Do you already know which team Walt goes on or do you want it to figure it out based on Walt's name? Post back with more info and I'll see what I can write up.
 
Upvote 0
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
 
Upvote 0
assuming all the player names are in cells A2 downwards, and also assuming that the destination sheet name for each value is alongside it in colum B, you can use the following...



Sub transfer_players()
For rowx = 2 To Sheets("Team").Range("a2").End(xlDown).Row
newsheetname = Sheets("team").Cells(rowx, 2).Value
Sheets(newsheetname).Cells(Sheets(newsheetname).Range("a1").End(xlDown).Row + 1, 1).Value = Sheets("team").Cells(rowx, 1).Value
Next
End Sub
 
Upvote 0
I got 3 teams Team1,2 and 3. Jeff should go to Team2.sheet and Mary should go to Team1.sheet and so on . How do I achieve this?? Thanks in advance..

On 2002-04-19 15:10, Joe Was wrote:
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
 
Upvote 0

Forum statistics

Threads
1,213,543
Messages
6,114,238
Members
448,555
Latest member
RobertJones1986

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