nintendods
Technical User
Hi Guys,
I searched for similar questions but have not found any, and searching google i have done the same and used some code but cant figure it out. I am not super literate when it comes to excel...
Essentially my question is this. I have a tipping competition and have built a tip sheet that is sent out and returned. It is designed using combo box / cell link and an index function to produce a single row containing the name of the tipper and their weekly tips. I have then tweaked a macro to import this calculation sheet from each returned file in a directory.
So now i have a master workbook, with about 100 'calculation' sheets, numbered (1), (2), (3) etc.
I am looking to cut a range, B2:B22, paste into the master sheet, then insert a row so as to move it down and make room for the next cut and paste. Then i need it to loop through each worksheet.
Range("B2:B22").select
Selection.Copy
Sheets("Master Sheet").Select
Range("A9").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Rows("9:9").Select
Application.CutCopyMode = False
Selection.Insert Shift:=xlDown
does anyone know a simple way to do it? I have used code before but all that happens is it cuts and pastes on the master sheet 100 times...
thanks heaps, i have been looking online all day but cannot find anything to work properly. Getting frustrated and though someone could help
thanks!
I searched for similar questions but have not found any, and searching google i have done the same and used some code but cant figure it out. I am not super literate when it comes to excel...
Essentially my question is this. I have a tipping competition and have built a tip sheet that is sent out and returned. It is designed using combo box / cell link and an index function to produce a single row containing the name of the tipper and their weekly tips. I have then tweaked a macro to import this calculation sheet from each returned file in a directory.
So now i have a master workbook, with about 100 'calculation' sheets, numbered (1), (2), (3) etc.
I am looking to cut a range, B2:B22, paste into the master sheet, then insert a row so as to move it down and make room for the next cut and paste. Then i need it to loop through each worksheet.
Range("B2:B22").select
Selection.Copy
Sheets("Master Sheet").Select
Range("A9").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Rows("9:9").Select
Application.CutCopyMode = False
Selection.Insert Shift:=xlDown
does anyone know a simple way to do it? I have used code before but all that happens is it cuts and pastes on the master sheet 100 times...
thanks heaps, i have been looking online all day but cannot find anything to work properly. Getting frustrated and though someone could help
thanks!