urgent: criteria expression for a blank field?

  • Thread starter Thread starter BunBun
  • Start date Start date
B

BunBun

i m looking for criteria expression for a blank field
i try many variations,eg =" ", "null"

can anyone help?

thx
 
If Nz([YourField],"") = "" Then ...

NOTE: there is NO space between the double quotes in the above expression.
A zero-length string ("") is NOT the same as a space (" "), nor the same as
a Null.
 
Back
Top