I'm new to Access and learning as I go. I have a text box that I am loading with data from a table once a combo box selection is made. I want the text box to be filled with the result of a query. However my code puts the exact string of the query into the text box.
[Description] = "SELECT Description FROM SoftwareCriticalLevels WHERE Number = '" & Me![SCL_Combo] & "'"
How do I put the result of the query into the text box?
[Description] = "SELECT Description FROM SoftwareCriticalLevels WHERE Number = '" & Me![SCL_Combo] & "'"
How do I put the result of the query into the text box?