Presumably this relates to your other thread, in which case, immediately after the DIM statements at the top of the macro, enter or copy the following.
Code:
Dim oFF As FormField
For Each oFF In ActiveDocument.FormFields
If oFF.Result = "" Then
oFF.Select
MsgBox "Field cannot be left empty"
GoTo lbl_Exit
End If
Next oFF