Hi
Im pretty new to access. I have a form (called TestAdd) where you fill in information that populates a table called "Tests"
I also have a table called CPTCodes with 3 columns: CPT_Code, Test, Prices.
One of the fields is called "CPTCode." That field has a row source of
SELECT CPTCodes.[CPT_Code], [CPTCodes].[Test Name] FROM CPTCodes ORDER BY [CPT_Code];
Lower down on the form I want to display the price of the test. The prices of the tests are in that table called "CPTCodes"
I want the price of the test, according to the CPTCode in the form, to be displayed on the form.