|
-
May 8th, 2006, 07:53 AM
#1
Thread Starter
Frenzied Member
CR 11 Wildcard -> Param?
Is there a wildcard character I can use in a parameter to pull all the data instead of using an actually parameter?
I would like to give the user an option to use specific criteria or pull all the data on one report.
Thanks!
-
May 9th, 2006, 07:49 AM
#2
Thread Starter
Frenzied Member
Re: CR 11 Wildcard -> Param?
Am I better off making 2 reports... 1 that takes a parameter and one that doesn't? I would think there is another way but that seems to be the only solution I can see.
-
May 9th, 2006, 07:47 PM
#3
New Member
Re: CR 11 Wildcard -> Param?
hi,
there is a wildcard symbol used in CRXI
'?' stands for single character
'*' stands for any number of character
if you want to select all the data just use '*' on your record selection formula.
good day!
-
May 10th, 2006, 08:34 AM
#4
Thread Starter
Frenzied Member
Re: CR 11 Wildcard -> Param?
I tried "is equal to" with * and ?, neither of them work
-
May 10th, 2006, 07:35 PM
#5
New Member
Re: CR 11 Wildcard -> Param?
try this one:
if {?yourParameter} <> '' then
({yourField} = {?yourParameter})
else
({yourField} like '*')
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|