Currently what I have is Four cascading combo boxes. IT starts with a minimum value and a maximum value. Depending upon what you choose you then get to choose the name. And depending on the name you get the colour. I want to make it so once you choose the colour it will tell you the exact price of that item. This is what I have so far, it accurately shows the price of the item in the rowsource of the combo box Test. But what I want to do is make it so that it displays the price of the item in a text box. I am new at visual basic so please bear with me
. Thank You.
Private Sub ComboColour_AfterUpdate()
On Error Resume Next
Test.RowSource = "Select RollID.[Sale Price] " & _
"FROM RollID " & _
"WHERE RollID.CarpetName = '" & ComboCarpetName.Value & "' " & _
"AND RollID.Colour = '" & ComboColour.Value & "' " & _
"ORDER BY RollID.Colour;"
ColourLabel.Caption = ComboColour.Value
End Sub

Private Sub ComboColour_AfterUpdate()
On Error Resume Next
Test.RowSource = "Select RollID.[Sale Price] " & _
"FROM RollID " & _
"WHERE RollID.CarpetName = '" & ComboCarpetName.Value & "' " & _
"AND RollID.Colour = '" & ComboColour.Value & "' " & _
"ORDER BY RollID.Colour;"
ColourLabel.Caption = ComboColour.Value
End Sub