Link to home
Start Free TrialLog in
Avatar of lana123
lana123

asked on

Boolean parameters in Crystal Report

I have boolean parameter in Crystal Report and I would like to show the boolean values through the check box:"True"- checked box,
"False"-unchecked box
I'll appreciate any answer

Thanks,

  Lana

ASKER CERTIFIED SOLUTION
Avatar of frodoman
frodoman
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Mike McCracken
Mike McCracken

I did this with a Formula field with a border around it so it looks like  a box.  Text displayed is an X for true or ' ' for false.

Formula

if Boolean_Field then
   'X'
else
   ' '

Put the formula field on the report
Format it
 set the 4 borders to single

If you know the ASCII value for a check mark you could use chr(XXX) instead of 'X'

mlmcc
For that matter you could use one of the fonts that have these characters in the character set already...