Hello,
I have a list of polygons that have values from -140 to +1 where the negatives are outliers and should have value = 0
How can I calculate a value using IF statement? Having some trouble with Python as it is new for me...
In excel the formula would be: =if(A1<0,0,A1)
How can I achieve this in ArcGIS pro v 1.2?
Solved! Go to Solution.
First, You could Select by Attribute where
[FIELDNAME] < 0
Once selected, you could replace the corresponding values with 0 using Field Calculator.
First, You could Select by Attribute where
[FIELDNAME] < 0
Once selected, you could replace the corresponding values with 0 using Field Calculator.
aha! many thanks, how can we forget the magical Select?