PDA

View Full Version : Solved: Yes/No to Local/Regional in a table



ironj32
06-07-2007, 07:18 AM
Is it possible to change the display of "Yes/No" to "Local/Regional"? I have a list of values that were option buttons in Excel, which is represented as TRUE/FALSE. So when it is imported to access it is shown as -1/0 .... which can be made into Yes/No in the table. But I need it to be displayed as Local/Regional. Can this be done within the table or does it have to be through a form? I hope this makes sense!
Thanks

Oorang
06-07-2007, 07:42 AM
Paste this in where you would normally put the field name:
MyField:iif([MyTable].[MyField],"Local","Regional")

ironj32
06-07-2007, 07:59 AM
in the table field name or form field name or query field name?

Oorang
06-07-2007, 08:15 AM
In the query builder.

ironj32
06-07-2007, 08:51 AM
Awesome! Thanks Oorang.