The following macro will highlight any paragraph without the '=' sign
Code:
Sub Macro1()
Dim oPara As Paragraph
For Each oPara In ActiveDocument.Paragraphs
If InStr(1, oPara.Range.Text, "=") = 0 Then
oPara.Range.HighlightColorIndex = wdYellow
End If
Next oPara
End Sub