OscarAlberto
Programmer
Is it at all possible to programatically add arguments to the application.worksheetfunction.sum every time my codes cycles through a Do-Until-Loop????
Thanks in advance.
Thanks in advance.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim tjRange As Range
Dim x As Integer
Set tjRange = Sheets!Sheet1.Range("a1")
For x = 2 To 7
Set tjRange = Union(tjRange, Cells(x, x))
MsgBox WorksheetFunction.Sum(tjRange)
Next