I'm using the following python code to replace Null values by 0, using field calculator: def nulls(p1): if p1 is None: return 0 else: return p1But notting happens, Null values stay. I'm using ArcGIS 10.0 أكثر...