Good afternoon.
I have this if statement in VBA -
If (Not IsNull(DLookup("[Part Manufacturer]", "[export_sheet]"))) Then
If (MsgBox("Delete PN's w/o manufacturer names?", 4) = 6) Then
DoCmd.RunSQL "DELETE FROM export_sheet WHERE [Part Manufacturer] IS NULL", -1
End If...