if (suffval != '') and (suffval not in allowed):
if (suffval is not None)
if (not len(suffval))
if (not suffval.isspace()) and (suffval not in allowed):
if (suffval != ' ') and (suffval not in allowed)
if (suffval not in allowed) & (suffval is not None) & (len(suffval) != 0): # flag record
By "records without values" do you mean records with NULL or records with just an empty string? If a string is empty it will have length zero.
if (suffval not in allowed) & (suffval is not None) & (len(suffval) != 0):
Aangemelde leden kunnen berichten plaatsen, updates volgen en meer. Nieuw hier? Registreer een gratis account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.