V Vallan Registered User. Local time Today, 15:08 Joined Jan 16, 2008 Messages 46 Feb 26, 2008 #1 Hello. Is it possible to change a value in a listbox? I have a column in a listbox refering to a yes/no. In the listbox it shows as 0 -1. Is it possible to make it showin yes or no instead? Matt
Hello. Is it possible to change a value in a listbox? I have a column in a listbox refering to a yes/no. In the listbox it shows as 0 -1. Is it possible to make it showin yes or no instead? Matt
KenHigg Registered User Local time Today, 09:08 Joined Jun 9, 2004 Messages 13,327 Feb 26, 2008 #2 Make the row source a value list with Yes and No in it -
V Vallan Registered User. Local time Today, 15:08 Joined Jan 16, 2008 Messages 46 Feb 29, 2008 #3 Must be possible Hi again. If i have a listbox with 2 columns and one is a yes/no column. in the listbox it shows like 0 and -1. Somehow it must be possible to make the column to show the text instead (YES OR NO) Maybe im wrong but i hope its possible. Anyone who can give me a suggestion? Matt
Must be possible Hi again. If i have a listbox with 2 columns and one is a yes/no column. in the listbox it shows like 0 and -1. Somehow it must be possible to make the column to show the text instead (YES OR NO) Maybe im wrong but i hope its possible. Anyone who can give me a suggestion? Matt
W WayneRyan AWF VIP Local time Today, 14:08 Joined Nov 19, 2002 Messages 7,122 Feb 29, 2008 #4 Matt, Base your listbox on a query: Code: Select Field1, IIf([Field2], "Yes", "No") From YourTable Order By Field1 Wayne
Matt, Base your listbox on a query: Code: Select Field1, IIf([Field2], "Yes", "No") From YourTable Order By Field1 Wayne