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):
Angemeldete Mitglieder können Beiträge verfassen, Updates folgen und mehr. Neu hier? Registriere ein kostenloses Konto.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.