well, i cheated, but it works. i'm sure there's another way to do it,
but like i said, i don't know how.
this simply looks at the four columns & if they all have zeros in them
(the only way it would add up to zero), then it deletes the row. i'd
sure be interested in seeing how to do it by adding the four columns
up, if anybody else knows how to do that.
=======================
Option Explicit
Sub Marie()
Dim myLastRow As Long
Dim r As Long
Dim c As Range
myLastRow = ActiveSheet.Cells(10000, 10).End(xlUp).Row
For r = myLastRow To 1 Step -1
Set c = ActiveSheet.Range("j" & r)
If c.Value = 0 And _
c.Offset(0, 1).Value = 0 And _
c.Offset(0, 2).Value = 0 And _
c.Offset(0, 3).Value = 0 Then
c.EntireRow.Delete
End If
Next r
End Sub
=========================
of course, this doesn't account for blanks, so......... don't know if
that will be a problem.
hope it helps somewhat, tho!

susan