I am new to Excel VB and have managed to get my code to work, but it seems I could simplify it and also complete the next part of the project as part of the simplification. The part I have working is dragging the formulas in columns T through Y down to the next blank row on the sheets that need it. The primary issue I am having is by not counting the rows I am unable to drag the formula in column C down one additional row. Below is what I have so far and thanks in advance for your time and patience!
Sub Update_Sheets()
'Selects the required sheet
Sheets("Sales Summary").Select
'Moves selction colums needing update
Range("T2").Select
'Moves selection to last entry
Selection.End(xlDown).Select
Range(Selection, Selection.End(xlToRight)).Select
'This works as long as the active cells is selected
Range(Selection.Offset(1, 0), Selection).FillDown
'Selects the required sheet
Sheets("Other Sales Summary").Select
'Moves selction colums needing update
Range("T2").Select
'Moves selection to last entry
Selection.End(xlDown).Select
Range(Selection, Selection.End(xlToRight)).Select
'This works as long as the active cells is selected
Range(Selection.Offset(1, 0), Selection).FillDown
End Sub
Sub Update_Sheets()
'Selects the required sheet
Sheets("Sales Summary").Select
'Moves selction colums needing update
Range("T2").Select
'Moves selection to last entry
Selection.End(xlDown).Select
Range(Selection, Selection.End(xlToRight)).Select
'This works as long as the active cells is selected
Range(Selection.Offset(1, 0), Selection).FillDown
'Selects the required sheet
Sheets("Other Sales Summary").Select
'Moves selction colums needing update
Range("T2").Select
'Moves selection to last entry
Selection.End(xlDown).Select
Range(Selection, Selection.End(xlToRight)).Select
'This works as long as the active cells is selected
Range(Selection.Offset(1, 0), Selection).FillDown
End Sub