quick question, if you're able:
I am now setting up multiple worksheets and I want to run the macro on the others. Basically, it will be the same macro except the code alters slightly to accommodate the next week of stats:
from
With Wkb.Worksheets("summary")
Data = Array(.Cells(16, "C").Value, .Cells(16, "D").Value, .Cells(16, "E").Value, _
.Cells(16, "F").Value, .Cells(16, "G").Value, .Cells(16, "H").Value, _
.Cells(16, "I").Value, .Cells(16, "J").Value, .Cells(16, "M").Value, _
.Cells(16, "N").Value, .Cells(16, "O").Value, .Cells(16, "Q").Value, _
.Cells(16, "R").Value, .Cells(16, "S").Value, .Cells(16, "T").Value, _
.Cells(16, "U").Value, .Cells(16, "V").Value, .Cells(16, "W").Value)
End With
to
With Wkb.Worksheets("summary")
Data = Array(.Cells(18, "C").Value, .Cells(18, "D").Value, .Cells(18, "E").Value, _
.Cells(18, "F").Value, .Cells(18, "G").Value, .Cells(18, "H").Value, _
.Cells(18, "I").Value, .Cells(18, "J").Value, .Cells(18, "M").Value, _
.Cells(18, "N").Value, .Cells(18, "O").Value, .Cells(18, "Q").Value, _
.Cells(18, "R").Value, .Cells(18, "S").Value, .Cells(18, "T").Value, _
.Cells(18, "U").Value, .Cells(18, "V").Value, .Cells(18, "W").Value)
End With
I tried to implement this change by setting up another macro. Do I have to set up a new macro to this new sheet or can I use the existing macro?
Sorry... I thought I was sailing to the finish line there
Bookmarks