Provided that the combination Name + Model is a unique identifier for the source table, you could use:
Code:
Dim strSQL As String
strSQL = "INSERT INTO <DestinationTable> ( Name, Model, Price ) " & _
"SELECT Name, Model, Price " & _
"FROM <SourceTable> " & _
"WHERE <SourceTable>.Name = '" & Me.<ComboName>.Value & "' AND " & _
"<SourceTable>.Model = '" & Me.<ComboModel>.Value & "';"
CurrentDb.Execute strSQL, dbFailOnError
The elements between brackets (<>) must be replaced by the actual names. If the columns containing the Name and the Model in the combos are not the bound columns of the combos, you have to replace
Me.Combo.Value with
Me.Combo.Column(x) where x is the index of the proper column (the index of the first column of a combo is 0 (zero)).