I have a download of information with our members prior 12 month golf scores and their handicap differentials. The Name and other certain key information is shown only on the first row of data.
Thus I'm attempting to copy this key information onto the blank rows below to match the column information that has various scores on it so we can then analyze the scores. The number of Rows can vary from member to member, depending on number of games our member has played in the past year.
Per my 1st attempt at the Macro below I'm trying to adjust by rather than have specific cells - tell my Macro to Start at B3 - I can place the cursor there before starting - copy the next 3 columns or 4 columns in total to the blank line below by using the END key to go down to next filled in Row and then up 1 Row and Past. Then END Down to next member and do the same.
Finally I need to create a Sub Routine to tell this to do it 400 times - our member total.
ANY IDEAS! THANKS in Advance
Sub Macro1()
'
' Macro1 Macro
'
' Keyboard Shortcut: Ctrl+a
'
Range("B3:E3").Select
Selection.Copy
Range(Selection, Selection.End(xlDown)).Select
Range("B3:E9").Select
ActiveSheet.Paste
Selection.End(xlDown).Select
Range("B10:E10").Select
Application.CutCopyMode = False
Selection.Copy
Range(Selection, Selection.End(xlDown)).Select
Range("B10:E18").Select
ActiveSheet.Paste
Selection.End(xlDown).Select
Range("B19:E19").Select
Application.CutCopyMode = False
Selection.Copy
Range("B20").Select
End Sub
Thus I'm attempting to copy this key information onto the blank rows below to match the column information that has various scores on it so we can then analyze the scores. The number of Rows can vary from member to member, depending on number of games our member has played in the past year.
Per my 1st attempt at the Macro below I'm trying to adjust by rather than have specific cells - tell my Macro to Start at B3 - I can place the cursor there before starting - copy the next 3 columns or 4 columns in total to the blank line below by using the END key to go down to next filled in Row and then up 1 Row and Past. Then END Down to next member and do the same.
Finally I need to create a Sub Routine to tell this to do it 400 times - our member total.
ANY IDEAS! THANKS in Advance
Sub Macro1()
'
' Macro1 Macro
'
' Keyboard Shortcut: Ctrl+a
'
Range("B3:E3").Select
Selection.Copy
Range(Selection, Selection.End(xlDown)).Select
Range("B3:E9").Select
ActiveSheet.Paste
Selection.End(xlDown).Select
Range("B10:E10").Select
Application.CutCopyMode = False
Selection.Copy
Range(Selection, Selection.End(xlDown)).Select
Range("B10:E18").Select
ActiveSheet.Paste
Selection.End(xlDown).Select
Range("B19:E19").Select
Application.CutCopyMode = False
Selection.Copy
Range("B20").Select
End Sub