Im trying to create a constraint where if street_status=1 then the street_id must be null.
I tried this statement but I get an error message each time I try to update street_status or street_id
if ($feature.street_status==1 && $feature.street_id==null)
return true;
else
return false;
Thanks in advance!