R
ryguy7272
I checked several other posts and didn’t find my answer, so I’m not sure if
this can be done… I have a list of items in a Table. The list is as
follows: T, T1, T2, T3, etc… Finally, at the bottom of the list in my Table
I have Not Applicable. When I view the items in the ComboBox, the Not
Applicable bubbles up to the top, but I really wanted to display it in the
same order as the items in the Table, which is not necessarily alpha-order.
Is there any way to display items in a ComboBox exactly as they are in the
Table?
This is the RowSource:
SELECT LookupTable.T_Data FROM LookupTable GROUP BY LookupTable.T_Data;
Also experimented with this:
SELECT DISTINCT LookupTable.T_Data FROM LookupTable;
Tried this too:
SELECT LookupTable.T_Data FROM LookupTable;
This last attempt is pretty close, but it lists several blanks at the bottom
of the list (there are blanks because I have several Fields in the same
Table, which I use for looking up values for several ComboBoxes).
Any help would be greatly appreciated.
Regards,
Ryan---
this can be done… I have a list of items in a Table. The list is as
follows: T, T1, T2, T3, etc… Finally, at the bottom of the list in my Table
I have Not Applicable. When I view the items in the ComboBox, the Not
Applicable bubbles up to the top, but I really wanted to display it in the
same order as the items in the Table, which is not necessarily alpha-order.
Is there any way to display items in a ComboBox exactly as they are in the
Table?
This is the RowSource:
SELECT LookupTable.T_Data FROM LookupTable GROUP BY LookupTable.T_Data;
Also experimented with this:
SELECT DISTINCT LookupTable.T_Data FROM LookupTable;
Tried this too:
SELECT LookupTable.T_Data FROM LookupTable;
This last attempt is pretty close, but it lists several blanks at the bottom
of the list (there are blanks because I have several Fields in the same
Table, which I use for looking up values for several ComboBoxes).
Any help would be greatly appreciated.
Regards,
Ryan---