I moved my SQL from its own query into the VBA and followed an example of another post. This is what I got. Please let me know if this is the right way to do it. The results seem appropriate.
Code:
Private Sub cboBrands_AfterUpdate()
Dim BrandsSource As String
BrandsSource = "SELECT [Models].[Model_ID]," & _
" [Models].[Model_Name]," & _
" [Models].[Brand_ID] " & _
"FROM Models " & _
"WHERE [Brand_ID] = " & Me.cboBrands.Value
Me.cboModels.RowSource = BrandsSource
Me.cboModels.Requery
End Sub
Private Sub cboModels_AfterUpdate()
End Sub