Smart questions
Smart answers
Smart people
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Member Login

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips now!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

Join Tek-Tips
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

LINK TO THIS FORUM!

Add Stickiness To Your Site By Linking To This Professionally Managed Technical Forum.
Just copy and paste the
code below into your site.

Partner With Us!

"Best Of Breed" Forums Add Stickiness To Your Site
Partner Button
(Download This Button Today!)

Feedback

"...Just to let you know...what a great site you have. I posted a pretty generic question yesterday and have had 8 responses already, anyway thanks again and keep up the good work..."

Geography

Where in the world do Tek-Tips members come from?
crystaldev1 (Programmer)
25 Apr 12 19:51
Hello,

I'm using CR2008.  I created a dynamic parameter and using it in record select expert.  I would like to know how I can use this parameter where if noting is selected for this parameter then show everything (=TRUE) in record select expert.  Right now, dynamic parameter is requiring a value which I do not want to select.  In the record select expert, I have

if {?dynamic_param} = "" then TRUE
else Field1 = {?dynamic_param}

Thanks.   
lbass (TechnicalUser)
25 Apr 12 20:38
Create a command like this:

select field1
from table
union
select 'All'
from table

Then use {command.field1} as the source for the dynamic parameter. In the main report, use a record selection formula like this:

(
(
{?parm} <> "All" and
{table.field1}={?Parm}
) or
{?parm}="All"
)

-LB

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members!

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close