Solved! Go to Solution.
def count(a,b,c,d,e): x = 0 if len(a) != 0 and a != None: x +=1 if len(b) != 0 and b != None: x +=1 ... and so forth return str(x)
def count(a,b,c,d,e): x = 0 if a: x +=1 if b: x +=1 ... and so forth return str(x)
def count(a,b,c,d,e): x = 0 if len(str(a)) != 0 and str(a) != "None": x +=1 if len(str(b)) != 0 and str(b) != "None": x +=1 if len(str(c)) != 0 and str(c) != "None": x += 1 if len(str(d)) != 0 and str(d) != "None": x += 1 if len(str(e)) != 0 and str(e) != "None": x += 1 return str(x)
count( !field1!, !field2!, !field3!, !field4!, !field5!)
def count(a,b,c,d,e): x = 0 if len(str(a)) == 0 or str(a) == "None": x +=1 if len(str(b)) == 0 or str(b) == "None": x +=1 if len(str(c)) == 0 or str(c) == "None": x += 1 if len(str(d)) == 0 or str(d) == "None": x += 1 if len(str(e)) == 0 or str(e) == "None": x += 1 return str(x)
def count(a,b,c,d,e): x = 0 if len(a) != 0 and a != "None": x +=1 if len(b) != 0 and b != "None": x +=1 ... and so forth return str(x)
def count(a,b,c,d,e): x = 0 if len(a) != 0 and a != None: x +=1 if len(b) != 0 and b != None: x +=1 ... and so forth return str(x)
def count(a,b,c,d,e): x = 0 if a: x +=1 if b: x +=1 ... and so forth return str(x)