How do you create a parameter that uses a boolean value?
I am currently using Crystal Reports version 9.
Your assistance in this matter is greatly appreciated.
Right click the Prameters heading the the Field Explorer and select New and change the data type to a boolean.
To use the parameter, you might set the default values to false being the first (should be the default), and then in the record selection formula use something like:
if not({?MyBooleanParm}) then //means it's false
{table.field}=false
else
{table.field}=true
synapsevampire,
What if a table.field doesn't exist for this particular parameter? Is it possible to create a boolean parameter without referencing a table.field.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.