B bmwccn New member Local time Tomorrow, 00:50 Joined Apr 20, 2004 Messages 7 Jun 1, 2004 #1 I`ve got a report which opens with a query, so i can choose which records to be shown in the report. If I want them all to be shown what can I type in the query field?
I`ve got a report which opens with a query, so i can choose which records to be shown in the report. If I want them all to be shown what can I type in the query field?
RichO Registered Yoozer Local time Today, 17:50 Joined Jan 14, 2004 Messages 1,036 Jun 1, 2004 #2 If you are referring to a parmeter query, the wildcard * will only work if the criteria uses the word "Like". Try typing * and if it doesn't return any records you may want to add "Like" to the criteria, ie: Like [Enter Search Data]
If you are referring to a parmeter query, the wildcard * will only work if the criteria uses the word "Like". Try typing * and if it doesn't return any records you may want to add "Like" to the criteria, ie: Like [Enter Search Data]
C cogent1 Registered User. Local time Today, 23:50 Joined May 20, 2002 Messages 315 Jun 1, 2004 #3 If it is a parameter query, use the following expression: Like "*" & [your parameter] & "*" If the parameter is left blank, all records will be returned.
If it is a parameter query, use the following expression: Like "*" & [your parameter] & "*" If the parameter is left blank, all records will be returned.