I am not familiar with the Yes/no data type. Can you direct me?
> I am not familiar with the Yes/no data type. Can you direct me?
In Table design view select a field and look at the choices offered for the data
type. Yes/No is one of them. It stores -1 for True (Yes) and 0 for False (No).
It is often displayed as a CheckBox in forms, but on reports it can be formatted
to show "True/False", "Yes/No", etc..

Signature
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com
KARL DEWEY - 16 Jul 2005 07:05 GMT
You can have it to display more by using an Iif statement --
Iif([YourYesNoField]= -1,"Signs on-site", "Pick up signs for site")
> > I am not familiar with the Yes/no data type. Can you direct me?
>
> In Table design view select a field and look at the choices offered for the data
> type. Yes/No is one of them. It stores -1 for True (Yes) and 0 for False (No).
> It is often displayed as a CheckBox in forms, but on reports it can be formatted
> to show "True/False", "Yes/No", etc..
Rick Brandt - 16 Jul 2005 13:46 GMT
> You can have it to display more by using an Iif statement --
> Iif([YourYesNoField]= -1,"Signs on-site", "Pick up signs for site")
No need for that. The format property can be used for any two text outputs.
For your example one would use a format of...
;"Pick up signs for site";"Signs on-site"

Signature
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com
June27 - 16 Jul 2005 21:40 GMT
Thanks for the info.,works like a charm. Table did display checkboxes as you
said it probably would so I also formatted my forms with (bound) checkboxes.
Very helpful post, thanks again.
June
> > You can have it to display more by using an Iif statement --
> > Iif([YourYesNoField]= -1,"Signs on-site", "Pick up signs for site")
[quoted text clipped - 3 lines]
>
> ;"Pick up signs for site";"Signs on-site"