A access2010 Registered User. Local time Today, 06:41 Joined Dec 26, 2009 Messages 1,162 Today at 4:51 AM #1 Could you please assist me in how to populate the SYMBOL_NAME from the dropdown field menu after selecting a symbol? Thank you for your assistance Frida Attachments Group_2_Tables_Yes=25_10_Oct_18.mdb Group_2_Tables_Yes=25_10_Oct_18.mdb 288 KB · Views: 7
Could you please assist me in how to populate the SYMBOL_NAME from the dropdown field menu after selecting a symbol? Thank you for your assistance Frida
moke123 AWF VIP Local time Today, 09:41 Joined Jan 11, 2013 Messages 4,954 Today at 5:49 AM #2 get rid of the lookup fields in your tables. Use a separate table for the stock symbols and names and store the primary key as a foreign key in your other tables. then your textbox is for display only and you can use something like: =[Symbol_Stock].[column](1) in the control source.
get rid of the lookup fields in your tables. Use a separate table for the stock symbols and names and store the primary key as a foreign key in your other tables. then your textbox is for display only and you can use something like: =[Symbol_Stock].[column](1) in the control source.
arnelgp ..forever waiting... waiting for jellybean! Local time Today, 21:41 Joined May 7, 2009 Messages 20,645 Today at 9:17 AM #3 create a query from investment table and remove unnecessary fields in brokerage table. Attachments Group_2_Tables_Yes=25_10_Oct_18.mdb Group_2_Tables_Yes=25_10_Oct_18.mdb 676 KB · Views: 1
X xavier.batlle Active member Local time Today, 15:41 Joined Sep 1, 2023 Messages 182 Today at 9:27 AM #4 If you want or need to change the SYMBOL_NAME description after being selected, you have to assign the value in the Symbol_Stock AfterUpdate() event: Code: Me.Symbol_Name = Me.Symbol_Stock.Column(1) Attachments Group_2_Tables_Yes=25_10_Oct_18_Xevi.mdb Group_2_Tables_Yes=25_10_Oct_18_Xevi.mdb 456 KB · Views: 0
If you want or need to change the SYMBOL_NAME description after being selected, you have to assign the value in the Symbol_Stock AfterUpdate() event: Code: Me.Symbol_Name = Me.Symbol_Stock.Column(1)