Hello.
I am trying to create a calculated field in a table to count the number of blank fields for each record. However, every iteration of the calculation I do comes up as invalid.
I've tried:
Code:
IIf(IsNull([SKU])=True,1,0)+IIf(IsNull([Part_Number])=True,1,0)+IIf(IsNull([Description])=True,1,0)
and
Code:
IIf(IsNull([SKU]),1,0)+IIf(IsNull([Part_Number]),1,0)+IIf(IsNull([Description]),1,0)
and
Code:
IIf(Len([SKU])=0,1,0)+IIf(Len([Part_Number])=0,1,0)+IIf(Len([Description])=0,1,0)
What am I doing wrong?
Thanks!