Hi, im producing a user input search criteria.
For the initial criteria i used the like operator:
Like "*" & [parameter]& "*"
However.. This does not return Null values in other fields
For e.g. I have a custname field which always contains data
I also have a feedback field which in some cases may be null.
I resolved the problem by entering the following in the feedback criteria:
(Like [parameter] & "*"
Or Null
However i now have another problem.....
When i do a search on the feedback criteria, it will bring up both null and non null records. I obviously just want it to display the users stated criteria.
Can somebody please help
For the initial criteria i used the like operator:
Like "*" & [parameter]& "*"
However.. This does not return Null values in other fields
For e.g. I have a custname field which always contains data
I also have a feedback field which in some cases may be null.
I resolved the problem by entering the following in the feedback criteria:
(Like [parameter] & "*"
However i now have another problem.....
When i do a search on the feedback criteria, it will bring up both null and non null records. I obviously just want it to display the users stated criteria.
Can somebody please help