A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Format display in a yes/no field



 
 
Thread Tools Display Modes
  #1  
Old March 18th, 2005, 12:19 PM
Peter K
external usenet poster
 
Posts: n/a
Default Format display in a yes/no field

I have created a simple combo box with two values, yes or no. The drop list
displays yes and no, but when you select one of those values it displays in
the record as 0 or -1. How do I format it to show the words? (I'm using
Access 2000)
  #2  
Old March 18th, 2005, 01:45 PM
Sprinks
external usenet poster
 
Posts: n/a
Default

Hi, Peter.

Is the field bound to a Yes/No field? What is the combo box' RowSource?
This could be done by a 2-column combo box, where the rows we

-1;"Yes"
0;"No"

with the Bound Column set to 1, the ControlSource set to the name of the
field you're storing it to, and the ColumnWidths set to 0";x", x being as
wide as you need.

You may wish to also consider a checkbox or option group control.

Hope that helps.
Sprinks

"Peter K" wrote:

I have created a simple combo box with two values, yes or no. The drop list
displays yes and no, but when you select one of those values it displays in
the record as 0 or -1. How do I format it to show the words? (I'm using
Access 2000)

  #3  
Old March 19th, 2005, 03:21 AM
Peter K
external usenet poster
 
Posts: n/a
Default

I’ve made the changes you suggested, and it now displays yes/no, so thanks
very much! But to be honest, I don’t understand why that process was
necessary. More details…

The database is being set up to prepare for a church jubilee next year. The
main table is a list of names and contact information. One field in the
table is called “Registration”, and marks who will be coming to the jubilee.
The data type is set at yes/no. In the table a lookup list with values “yes”
and “no” works as it should.

But in the form based on that table it didn’t, even though I thought I was
following the same process. The field properties showed the following:
Control source = Registration (I presume that makes it a bound field??)
Row source = ‘Yes”;”No”

So I’ve got something that works, but I’d be better off if I understood why
it has to be that way…

Thanks.

"Sprinks" wrote:

Hi, Peter.

Is the field bound to a Yes/No field? What is the combo box' RowSource?
This could be done by a 2-column combo box, where the rows we

-1;"Yes"
0;"No"

with the Bound Column set to 1, the ControlSource set to the name of the
field you're storing it to, and the ColumnWidths set to 0";x", x being as
wide as you need.

You may wish to also consider a checkbox or option group control.

Hope that helps.
Sprinks

"Peter K" wrote:

I have created a simple combo box with two values, yes or no. The drop list
displays yes and no, but when you select one of those values it displays in
the record as 0 or -1. How do I format it to show the words? (I'm using
Access 2000)

  #4  
Old March 19th, 2005, 06:10 AM
John Vinson
external usenet poster
 
Posts: n/a
Default

On Fri, 18 Mar 2005 19:21:02 -0800, "Peter K"
wrote:

The database is being set up to prepare for a church jubilee next year. The
main table is a list of names and contact information. One field in the
table is called Registration, and marks who will be coming to the jubilee.
The data type is set at yes/no. In the table a lookup list with values yes
and no works as it should.


What is STORED in the table is a number, -1 for Yes, 0 for No. That's
the way Yes/No fields work.

The Lookup List in your table IS NOT WHAT IS STORED. It's a display
tool; in fact it *conceals* what is stored in the table.

Access provides a number of different ways to display yes/no fields -
checkboxes (checked = yes), combo boxes (your lookup list, with the
Yes option storing -1 and the No option storing 0), or textboxes. The
textbox can be formatted to display -1/0, True/False, Yes/No or
various non-English options... but what's stored in the table is a
number.

John W. Vinson[MVP]
  #5  
Old June 21st, 2005, 08:18 PM
c.c.
external usenet poster
 
Posts: n/a
Default



"Peter K" wrote:

I have created a simple combo box with two values, yes or no. The drop list
displays yes and no, but when you select one of those values it displays in
the record as 0 or -1. How do I format it to show the words? (I'm using
Access 2000)

  #6  
Old March 16th, 2008, 11:40 AM posted to microsoft.public.access.forms
efandango
external usenet poster
 
Posts: 489
Default Format display in a yes/no field

I have the same problem; but with a text box instead of a combo box. The text
box is linked to a Yes/No field on a query. Is it possible to avoid the box
displaying -1 or 0 when I click on it?



"Sprinks" wrote:

Hi, Peter.

Is the field bound to a Yes/No field? What is the combo box' RowSource?
This could be done by a 2-column combo box, where the rows we

-1;"Yes"
0;"No"

with the Bound Column set to 1, the ControlSource set to the name of the
field you're storing it to, and the ColumnWidths set to 0";x", x being as
wide as you need.

You may wish to also consider a checkbox or option group control.

Hope that helps.
Sprinks

"Peter K" wrote:

I have created a simple combo box with two values, yes or no. The drop list
displays yes and no, but when you select one of those values it displays in
the record as 0 or -1. How do I format it to show the words? (I'm using
Access 2000)

  #7  
Old March 16th, 2008, 01:45 PM posted to microsoft.public.access.forms
Arvin Meyer [MVP]
external usenet poster
 
Posts: 4,231
Default Format display in a yes/no field

Change the format property for the field in the table to Yes/No or a
checkbox, do the same in the form.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com

"efandango" wrote in message
...
I have the same problem; but with a text box instead of a combo box. The
text
box is linked to a Yes/No field on a query. Is it possible to avoid the
box
displaying -1 or 0 when I click on it?



"Sprinks" wrote:

Hi, Peter.

Is the field bound to a Yes/No field? What is the combo box' RowSource?
This could be done by a 2-column combo box, where the rows we

-1;"Yes"
0;"No"

with the Bound Column set to 1, the ControlSource set to the name of the
field you're storing it to, and the ColumnWidths set to 0";x", x being as
wide as you need.

You may wish to also consider a checkbox or option group control.

Hope that helps.
Sprinks

"Peter K" wrote:

I have created a simple combo box with two values, yes or no. The drop
list
displays yes and no, but when you select one of those values it
displays in
the record as 0 or -1. How do I format it to show the words? (I'm
using
Access 2000)



  #8  
Old March 16th, 2008, 03:00 PM posted to microsoft.public.access.forms
efandango
external usenet poster
 
Posts: 489
Default Format display in a yes/no field

Arvin,

That's the problem, I already did those things:

Form Field: Yes/No
Query Field: Yes/No
Underlying Table field: Yes/No

When I view the Table and the Query, the field has a checkbox!, but the form
field correctly displays Yes or No; but when I click on the form field, it
reveals either the 0 or -1; neither of which I want to see.

PS: I'm Using Access 2007

"Arvin Meyer [MVP]" wrote:

Change the format property for the field in the table to Yes/No or a
checkbox, do the same in the form.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com

"efandango" wrote in message
...
I have the same problem; but with a text box instead of a combo box. The
text
box is linked to a Yes/No field on a query. Is it possible to avoid the
box
displaying -1 or 0 when I click on it?



"Sprinks" wrote:

Hi, Peter.

Is the field bound to a Yes/No field? What is the combo box' RowSource?
This could be done by a 2-column combo box, where the rows we

-1;"Yes"
0;"No"

with the Bound Column set to 1, the ControlSource set to the name of the
field you're storing it to, and the ColumnWidths set to 0";x", x being as
wide as you need.

You may wish to also consider a checkbox or option group control.

Hope that helps.
Sprinks

"Peter K" wrote:

I have created a simple combo box with two values, yes or no. The drop
list
displays yes and no, but when you select one of those values it
displays in
the record as 0 or -1. How do I format it to show the words? (I'm
using
Access 2000)




  #9  
Old March 19th, 2008, 02:29 PM posted to microsoft.public.access.forms
Arvin Meyer [MVP]
external usenet poster
 
Posts: 4,231
Default Format display in a yes/no field

A Boolean (Yes/No) field actually holds the values of -1 (yes) or 0 (no). If
you use a checkbox or radio button to display, you will never see the -1 or
0. Unfortunately the Input Mask property only works with text or date
datatypes, or you might be able to use that. I suggest that you use a check
box on a form and the yes/no format in reports.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com

"efandango" wrote in message
...
Arvin,

That's the problem, I already did those things:

Form Field: Yes/No
Query Field: Yes/No
Underlying Table field: Yes/No

When I view the Table and the Query, the field has a checkbox!, but the
form
field correctly displays Yes or No; but when I click on the form field, it
reveals either the 0 or -1; neither of which I want to see.

PS: I'm Using Access 2007

"Arvin Meyer [MVP]" wrote:

Change the format property for the field in the table to Yes/No or a
checkbox, do the same in the form.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com

"efandango" wrote in message
...
I have the same problem; but with a text box instead of a combo box. The
text
box is linked to a Yes/No field on a query. Is it possible to avoid the
box
displaying -1 or 0 when I click on it?



"Sprinks" wrote:

Hi, Peter.

Is the field bound to a Yes/No field? What is the combo box'
RowSource?
This could be done by a 2-column combo box, where the rows we

-1;"Yes"
0;"No"

with the Bound Column set to 1, the ControlSource set to the name of
the
field you're storing it to, and the ColumnWidths set to 0";x", x being
as
wide as you need.

You may wish to also consider a checkbox or option group control.

Hope that helps.
Sprinks

"Peter K" wrote:

I have created a simple combo box with two values, yes or no. The
drop
list
displays yes and no, but when you select one of those values it
displays in
the record as 0 or -1. How do I format it to show the words? (I'm
using
Access 2000)






  #10  
Old March 19th, 2008, 02:49 PM posted to microsoft.public.access.forms
J_Goddard via AccessMonster.com
external usenet poster
 
Posts: 221
Default Format display in a yes/no field

Hi -

If you want to see the fiels as Yes/No in table view, to to table design.
For the field you want to change, under the Lookup tab, set Display Control
to Text Box, and under the General tab, set the format to Yes/No.

These are for A2000, but should work in A2007 (not tested - I don't have
A2007)

John



efandango wrote:
Arvin,

That's the problem, I already did those things:

Form Field: Yes/No
Query Field: Yes/No
Underlying Table field: Yes/No

When I view the Table and the Query, the field has a checkbox!, but the form
field correctly displays Yes or No; but when I click on the form field, it
reveals either the 0 or -1; neither of which I want to see.

PS: I'm Using Access 2007

Change the format property for the field in the table to Yes/No or a
checkbox, do the same in the form.

[quoted text clipped - 28 lines]
using
Access 2000)


--
John Goddard
Ottawa, ON Canada
jrgoddard at cyberus dot ca

Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...forms/200803/1

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Prevent Blank Records being written. Need Help. Robert Nusz @ DPS Using Forms 4 December 29th, 2004 05:15 PM
Field Format in Access for Image Stephen General Discussion 0 November 10th, 2004 08:44 PM
Need help updating the "Display As" field Joe Lombardo Contacts 2 September 1st, 2004 09:41 PM


All times are GMT +1. The time now is 11:07 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright 2004-2024 OfficeFrustration.
The comments are property of their posters.