One of the counter-intuitive things with data is that a blank string is not
the same thing as a null is not the same thing as a zero...
To allow for nulls, try using the Nz function. It works by substituting a
value if it finds a null. For instance:
Nz(table1.address,"BLANK") <> Nz(table1.address,"BLANK")
(The "BLANK" is only there for emphasis. I generally use an empty string: "")
Hope that helps!
David
> Hi,
>
[quoted text clipped - 7 lines]
>
> Bonnie
Bonnie - 29 Mar 2007 21:26 GMT
Thanks David, that's what I need.
Bonnie
> One of the counter-intuitive things with data is that a blank string is not
> the same thing as a null is not the same thing as a zero...
[quoted text clipped - 21 lines]
> >
> > Bonnie