Show Checkbox on Crystal Report

Consider the following Customer table.



Step 1:
  Design report as below:

Step 2: To show checkbox add one formula field “RegisterStatus” like below.

 
 
Step 3: In formula editor write below code.

  1. IF({Customers.Registered}='Yes')THEN  
  2.   
  3. Chr(254)  
  4.   
  5. ELSE  
  6.   
  7. Chr(168)   

Step 4: Now add this formula field to report. And set “Wingdings” font for this formula field.

Step 5: Preview report and check output.