Articles in this section
Category / Section

How to Use CheckBox in a Report with Bold Reports

Published:
Updated:

Utilizing the checkbox feature in Bold Reports Report provides significant benefits for enhancing report visualization, especially when dealing with Boolean fields. It is essential to employ the Wingdings font to ensure optimal utilization of the checkbox functionality. For effective utilization of the checkbox in Bold Reports, kindly refer to the following guidelines.

Checkbox Creation

The VB (Visual Basic) programming language is primarily used to build expressions in Bold Reports for creating the checkboxes. The Chr function is used to convert ANSI codes into characters.

  • Chr(254) corresponds to the Wingdings character representing a checked state (☑).
  • Chr(168) corresponds to the Wingdings character representing an unchecked state (☐).
  • Chr(9746) corresponds to the Wingdings character representing a crossed state (☒).
Changing Font to Wingdings

Change the font of the textbox to “Wingdings.” This ensures that the Wingdings character is used, providing the appropriate representation for checked and unchecked states.

Screenshot_2024-01-22_174335.png

Using Chr Function in Conditional Expression

Use the Chr function in a Conditional Expression within a textbox. For example:

=IIF(Fields!Field1.Value, Chr(254), Chr(168))
Output

It will produce an output similar to the image shown below:

Screenshot_2024-01-22_180613.png

The sample report is attached here.

See also:

  1. How to add checkbox in a table report
  2. How to add checkbox in a table using an image
Was this article useful?
Like
Dislike
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied