gheyman
Well-known Member
- Joined
- Nov 14, 2005
- Messages
- 2,347
- Office Version
- 365
- Platform
- Windows
I have a Combo Box that has 6 columns
The source of the data for the list is huge. There is over 30k rows
SELECT [ModelGeneral_vluItem].[TotalLeadtimeDays], [ModelGeneral_vluItem].[ItemID], [ModelGeneral_vluItem].[ItemDescription], [ModelGeneral_vluItem].[LastRevisionID], [ModelGeneral_vluItem].[Commodity], [ModelGeneral_vluItem].[MakeorBuyCode] FROM ModelGeneral_vluItem ORDER BY [ItemID];
when the user makes a selection I want to populate another field on the form using data from the 6 columns in the combo box
So in my other field I put the following formula: =[Combo1020].[Column](2)
It works great
UNLESS they choose an item way down the list (lest say Row 1001). Then my other field doesn't populate. It appears that if they do not select an item that is within the first 255 rows (which is the max number you can put in the "List Rows") the formula above doesn twork.
Is there another way to do this?
I have the User select an Item number from the list in the Combo box. I want another field on the form to automatically put the items description. Like a Vlookup would do in Excel.
The source of the data for the list is huge. There is over 30k rows
SELECT [ModelGeneral_vluItem].[TotalLeadtimeDays], [ModelGeneral_vluItem].[ItemID], [ModelGeneral_vluItem].[ItemDescription], [ModelGeneral_vluItem].[LastRevisionID], [ModelGeneral_vluItem].[Commodity], [ModelGeneral_vluItem].[MakeorBuyCode] FROM ModelGeneral_vluItem ORDER BY [ItemID];
when the user makes a selection I want to populate another field on the form using data from the 6 columns in the combo box
So in my other field I put the following formula: =[Combo1020].[Column](2)
It works great
UNLESS they choose an item way down the list (lest say Row 1001). Then my other field doesn't populate. It appears that if they do not select an item that is within the first 255 rows (which is the max number you can put in the "List Rows") the formula above doesn twork.
Is there another way to do this?
I have the User select an Item number from the list in the Combo box. I want another field on the form to automatically put the items description. Like a Vlookup would do in Excel.