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.
Option Explicit
Function SumEveryFourth(ARange As Range) As Double
Dim c As Range
Dim nCounter As Long
For Each c In ARange
If nCounter = 3 Then
SumEveryFourth = SumEveryFourth + c.Value
nCounter = 0
Else
nCounter = nCounter + 1
End If
Next c
End Function