If else logic

hello,
in this following script i want to return to point 7 if the value is null, if not then point 15, this is partially working when its not null.
someone help please?


Try:

if(point15 == null)
...
1 Like

MAGIC!!
thanks!