Convert Values to Checkboxes in Table

P

Petra

I added yes/no bit fields to an existing table and the fields display values
of -1 and 0 instead of the checkboxes. How can I convert these values to
checkboxes? Any help is appreciated.
 
K

Ken Snell \(MVP\)

-1 = true, 0 = false (or yes / no). That is how the data are stored; the
checkbox is just a visible representation to show the values. You will need
to use a checkbox control on the form or report.
 
J

John Vinson

I added yes/no bit fields to an existing table and the fields display values
of -1 and 0 instead of the checkboxes. How can I convert these values to
checkboxes? Any help is appreciated.

Open the Table in design view; select this field. On the properties
tab in the lower left select the Lookup tab. Change the "display as"
line from Checkbox to Textbox.

John W. Vinson[MVP]
 
P

Petra

Thank you Ken...

Ken Snell (MVP) said:
-1 = true, 0 = false (or yes / no). That is how the data are stored; the
checkbox is just a visible representation to show the values. You will need
to use a checkbox control on the form or report.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top