I have a field in a matrix
that has some nulls. I would like to replace all the null
s with 0
s. This is the expression I currently have in the field:
=Sum(IIf(Code.isVM(Fields!deviceType.Value), 0, 1))
I'm guessing I have to have an IsNothing
expression in there but I can't figure out how to add this with this existing expression
.