Why doesn't my expression work

S

steady

=IIf(IsNull([SyringeSize]), "N/A", [SyringeSize])
The result I get in my text field is "#Error"
 
R

Rick B

Just use the Nz function...

=Nz([SyringeSize],"N/A")

The field "SyringeSize" is a text field, right?
 
F

fredg

=IIf(IsNull([SyringeSize]), "N/A", [SyringeSize])
The result I get in my text field is "#Error"

Make sure the name of this control is not "SyringeSize".
 
Top