Did you try and calculate them via the field calculator?
Right-click the column heading and click "Field Calculator..." and in the box write "0" (without the quotation marks).
I did. The field calculator is grayed when I try.
The data were joined and the null values are non-matching records.
If IsNull([JoinedObjectIDField]) Then Output = "SomeValueWhenRecordsAreUnmatched" Else Output = [OriginalValueInOutputField] End If
This is a very old thread, but the fact that I found this in 2023 means that maybe someone else will also find it now. So, the way to do this on field calculator is:
def rmnull(x):
if x is None:
return 0
else:
return x
Hopefully, this helps someone else 🙂