Este script VBa faz isso
Option Explicit
Sub walkThePlank()
Dim row As Integer
row = 1
Dim total As Integer
total = 0
Do While (Range("D" & row).Value <> "")
Dim val As String
val = Range("D" & row).Value
If (val = "-1") Then
total = total + 1
Else
Range("G" & row).Value = total
total = 0
End If
row = row + 1
Loop
End Sub
Antes de ser executado
Edepois