Restrict

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
 
M

Mark J. McGinty

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
 
J

jim

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top