Restrict

  • Thread starter Thread starter jim
  • Start date Start date
J

jim

I want to find all contacts that do not have an empty CompanyName
it seems
"[CompanyName] != ''";

does not work. Can I used != in an restrict?
Thank you
 
jim said:
I want to find all contacts that do not have an empty CompanyName
it seems
"[CompanyName] != ''";


Try this:

"[CompanyName] <> ''"

The language in which you are developing does not alter the way OOM parses
these conditions.


-Mark
 
Thanks I will try it.
Rog
I want to find all contacts that do not have an empty CompanyName
it seems
"[CompanyName] != ''";



Try this:

"[CompanyName] <> ''"

The language in which you are developing does not alter the way OOM parses
these conditions.


-Mark



does not work. Can I used != in an restrict?
Thank you
 
Back
Top