cancel
Showing results for 
Search instead for 
Did you mean: 

Prompt for Record filter

Former Member
0 Kudos
37

Hi guys,

I see where i can have a prompt for a Query filter...

but

i think what i want is even easier.

i have a field called open which is true or false.

what i need is to prompt if the user wants to see

the open data or not.

do I need a special version of Crystal to do this?

thanks

timalaugh

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Have this open column at last in the details tab....

Create a formula which returns boolean 0/1

say 0 is returned, if user sets "open" as TRUE

1 is returned 1 if user sets "open" as FALSE

Conditionally suppress the column "open" based on the Boolean value returned

Thanks,

G

abhilash_kumar
Active Contributor
0 Kudos

First of all you would need to create a parameter of type 'Boolean'.

You can then create a Record Selection Formula to filter the records:

if {?Parameter_Name} = True then = "True"

Hope this helps!

-Abhilash