Hi everybody,
I needed to compare a string with NULL or see if the string is empty.
I tried the python function .isNull() >> doesn’t works.
I tried isNull(string_to_compare) >> doesn’t works.
Finally I founded:
if (string_to_compare == None):
else:
Trying to help,