A access2010 Registered User. Local time Today, 14:59 Joined Dec 26, 2009 Messages 1,164 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: 9
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, 17:59 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 Tomorrow, 05:59 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: 4
X xavier.batlle Active member Local time Today, 23:59 Joined Sep 1, 2023 Messages 183 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: 2
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)
A access2010 Registered User. Local time Today, 14:59 Joined Dec 26, 2009 Messages 1,164 Today at 7:27 PM #5 arnelgp said: create a query from investment table and remove unnecessary fields in brokerage table. Click to expand... Thank you, Arnelgp for the MsAccess 2003 file, which is PERFECT for my request. My boss has asked how to display the stock name when the Stock_Symbol has been selected, as she is concerned that the volunteers might choose the wrong Stock_Symbol. Thank you very much Frida Attachments Group_2_Tables_Yes=25_10_Oct_18 =Reply.pdf Group_2_Tables_Yes=25_10_Oct_18 =Reply.pdf 5.3 KB · Views: 0
arnelgp said: create a query from investment table and remove unnecessary fields in brokerage table. Click to expand... Thank you, Arnelgp for the MsAccess 2003 file, which is PERFECT for my request. My boss has asked how to display the stock name when the Stock_Symbol has been selected, as she is concerned that the volunteers might choose the wrong Stock_Symbol. Thank you very much Frida
A access2010 Registered User. Local time Today, 14:59 Joined Dec 26, 2009 Messages 1,164 Today at 7:29 PM #6 moke123 said: 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. Click to expand... Mokw123 Thank you for your suggestion. Frida
moke123 said: 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. Click to expand... Mokw123 Thank you for your suggestion. Frida
DHookom Active member Local time Today, 16:59 Joined Aug 7, 2024 Messages 532 Today at 8:53 PM #7 You could also combine the two fields into one expression with a Row Source of: Code: SELECT Symbol_Stock, [Symbol_Stock] & ": " & [Stock_Name] AS Expr1 FROM Investments01_tbl WHERE Symbol_Stock Is Not Null ORDER BY Symbol_Stock; Then set the Column Widths to 0",3"
You could also combine the two fields into one expression with a Row Source of: Code: SELECT Symbol_Stock, [Symbol_Stock] & ": " & [Stock_Name] AS Expr1 FROM Investments01_tbl WHERE Symbol_Stock Is Not Null ORDER BY Symbol_Stock; Then set the Column Widths to 0",3"