I want to repeat this code on all the worksheets in a workbook.
There may sometimes be 1-2 worksheets sometimes 50+.
Sub HoursTotal()
'
' HoursTotal Macro
'
Range("F2").Select
ActiveCell.FormulaR1C1 = "=SUM(C[-1])"
Range("F1").Select
ActiveCell.FormulaR1C1 = "Total Hours"
Range("G1").Select
End Sub
This should do it.
You need to activate the worksheet so that excel can make changes to it.
`Sub HoursTotal() Dim ws As Worksheet
End Sub`
Simple modification of your current code should do it:
But here's what it looks like without the
Select
's