G
Guest
Here's the problem that I am having:
I have a table BnkPtnr Table with two fields BankPtnr ID and BankPtnr #. I've created a form POP form which has a field to select BankPtnr ID (combo box). Once I select the ID, I want the next field BankPtnr Name to be populated with the corresponding name but it doesn't. Here's what I've done so far
On POP Form, I've set BankPtnr # as a combo box with 2 columns, one for BnkPtnr # and one for BnkPtnr Name and I have the Row Source to select the 2 fields
Row Source
SELECT [BnkPtnr Table].[BnkPtnr #], [BnkPtnr Table].[BnkPtnr Name] FROM [BnkPtnr Table] GROUP BY [BnkPtnr Table].[BnkPtnr Name], [BnkPtnr Table].[BnkPtnr #] ORDER BY [BnkPtnr Table].[BnkPtnr Name]
Bound Column should is
However, I don't know what to do now for the name field. I've tried to set BnkPtnr Name as a text box with control source BnkPtnr # but it displays the number from BnkPtnr # (the previous field) and I've also tried to set it to BnkPtnr Name but nothing comes out
Can someone please help me.......
I have a table BnkPtnr Table with two fields BankPtnr ID and BankPtnr #. I've created a form POP form which has a field to select BankPtnr ID (combo box). Once I select the ID, I want the next field BankPtnr Name to be populated with the corresponding name but it doesn't. Here's what I've done so far
On POP Form, I've set BankPtnr # as a combo box with 2 columns, one for BnkPtnr # and one for BnkPtnr Name and I have the Row Source to select the 2 fields
Row Source
SELECT [BnkPtnr Table].[BnkPtnr #], [BnkPtnr Table].[BnkPtnr Name] FROM [BnkPtnr Table] GROUP BY [BnkPtnr Table].[BnkPtnr Name], [BnkPtnr Table].[BnkPtnr #] ORDER BY [BnkPtnr Table].[BnkPtnr Name]
Bound Column should is
However, I don't know what to do now for the name field. I've tried to set BnkPtnr Name as a text box with control source BnkPtnr # but it displays the number from BnkPtnr # (the previous field) and I've also tried to set it to BnkPtnr Name but nothing comes out
Can someone please help me.......