Setting a check box

I would like to use the formula language to set a check box field. What types of “values” can you send to the box? Yes/No, True/False?

Thanks

Subject: Setting a check box

In the checkbox properties, you will want to define what values you will allow the checkbox to hold. Then, you can set the field name to one of the defined values using something along the lines of:

FIELD FieldName := “Value”

Subject: RE: Setting a check box

Note, however, if you’re using a keyword synonym (Yes|1, No|0) you will want to set the value to “0” or “1”, not “No” or “Yes”.