Checkbox appear based on another field value

  • Thread starter Thread starter Howard
  • Start date Start date
H

Howard

I'm trying to find a way to print either a blank box or a
checkmark depending on the value in a status field. Please
let me know. Thanks!
 
Howard said:
I'm trying to find a way to print either a blank box or a
checkmark depending on the value in a status field.

Use a text box and set its font to something like wingdings
that has a checkmark as a character. Set the text box's
control source expression to something like:

=IIf([status] = whatever, Chr(charcode), "")

where chacode is the checkmark's character code.
 
Back
Top