Q
Qaspec
.....or is there a better way to write this?
Private Sub CB1_Click()
With ThisWorkbook.Worksheets("February")
.Range("B5").Value = Worksheets("020110").Range("B5").Value +
Worksheets("020210").Range("B5").Value
End With
End Sub
The Worksheets go from "020110" to "022710"
Private Sub CB1_Click()
With ThisWorkbook.Worksheets("February")
.Range("B5").Value = Worksheets("020110").Range("B5").Value +
Worksheets("020210").Range("B5").Value
End With
End Sub
The Worksheets go from "020110" to "022710"