Is it possible to create a combo box showing one column from two different rows of a table?
I have a table with an ID, home phone number and GSMnumber. I want to use the phone numbers in an other table by doing a lookup from a combo box. I want the numbers to be displayed in the combobox in one column, not in two.
I now have a combo box that shows two columns, the home phone number and next to it the GSMNumber. The SQL for this is:
SELECT DISTINCTROW [Phonenumbers].[id], [phonenumbers].[homephone],[phonenumbers].[GSM] FROM [phonenumbers]
Is it possible to show the one column with the home phone numbers as well as the GSM numbers?
The ID is used to refer to the person of whom the phone is.
If I am unclear about something please let me know.
Cheers,
Dennis Wokke
I have a table with an ID, home phone number and GSMnumber. I want to use the phone numbers in an other table by doing a lookup from a combo box. I want the numbers to be displayed in the combobox in one column, not in two.
I now have a combo box that shows two columns, the home phone number and next to it the GSMNumber. The SQL for this is:
SELECT DISTINCTROW [Phonenumbers].[id], [phonenumbers].[homephone],[phonenumbers].[GSM] FROM [phonenumbers]
Is it possible to show the one column with the home phone numbers as well as the GSM numbers?
The ID is used to refer to the person of whom the phone is.
If I am unclear about something please let me know.
Cheers,
Dennis Wokke