I wonder which is correct
If IsNull(DLookup("PrivateContractFee", "tblAllStatementTEMP")) Or (DLookup("PrivateContractFee", "tblAllStatementTEMP")) = "0" Then
objDoc.Bookmarks("PrivateContract").Select
objWRD.Selection.Rows.Delete
End If
or is it ?
If IsNull(DLookup("PrivateContractFee", "tblAllStatementTEMP")) Or (DLookup("PrivateContractFee", "tblAllStatementTEMP")) = 0 Then
objDoc.Bookmarks("PrivateContract").Select
objWRD.Selection.Rows.Delete
End If
Also is this use of OR acceptable?
If IsNull(DLookup("PrivateContractFee", "tblAllStatementTEMP")) Or (DLookup("PrivateContractFee", "tblAllStatementTEMP")) = "0" Then
objDoc.Bookmarks("PrivateContract").Select
objWRD.Selection.Rows.Delete
End If
or is it ?
If IsNull(DLookup("PrivateContractFee", "tblAllStatementTEMP")) Or (DLookup("PrivateContractFee", "tblAllStatementTEMP")) = 0 Then
objDoc.Bookmarks("PrivateContract").Select
objWRD.Selection.Rows.Delete
End If
Also is this use of OR acceptable?