Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Inserting a check off box in a report Crystal 11 5

Status
Not open for further replies.

csch

Technical User
Oct 30, 2005
1
US
I would like to know how to insert a check off box as part of a report instead of having the "false" and "True" statements.

Thanks
 
You would have to have to small jpgs of a tick box ticked and another unticked - supress one and show the other based on the boolean flag.

Cheers
paulmarr
 
Another option is to use a formula like the following:

if <yourcondition> = true then
chr(254)//for a checkmark, 253 for an x
else chr(168)

Then format the formula to use the wingdings font.

-LB

 
Note also that if you select Start->Run->Charmap you can copy and paste a wide variety of characters into a report.

-k
 
You can also use chr(111) for an empty box and chr(510) for a box with a check inside of it. the rest applies...you'll have to change the font to wingdings. But this can give you other options.

-Carlos
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top