Trying to use the Calculate Field GP tool in ArcGIS Pro 2.2.3. I need to use logic (if else statements) to modify some field values.
I've searched and searched and can't find how to do this in Arcade.
In python, the following works fine. It actually sets the field to Null (verified by an isNull definition query).
<SPAN class="keyword token">return</SPAN> None<SPAN class="line-numbers-rows"><SPAN></SPAN></SPAN>
In Arcade, the following just returns 0
<SPAN class="keyword token">return</SPAN> null<SPAN class="line-numbers-rows"><SPAN></SPAN></SPAN>
I've tried a bunch of other things with Arcade, but no success.
Anyone have any ideas how to return null with Arcade?