In my combobox I have this code:<br><br><br>-------------------------------------------------------<br>Private Sub Combo171_Click()<br><br>On Error Resume Next<br><br>Dim x As Integer<br><br>For x = 0 To Combo171.ListCount - 1<br> If Combo171.ListIndex = 0 Then<br> Combo175.RowSource = ""<br> End If<br> If Combo171.Value = "Desktop" Then<br> Combo175.RowSource = "SELECT [Problem Types].[Desktop] FROM [Problem Types]"<br> End If<br> If Combo171.Value = "Network" Then<br> Combo175.RowSource = "SELECT [Problem Types].[Network] FROM [Problem Types]"<br> End If<br> If Combo171.Value = "Facilities" Then<br> Combo175.RowSource = "SELECT [Problem Types].[Facilities] FROM [Problem Types]"<br> End If<br>Next x<br><br>End Sub<br><br>--------------------------------------------------<br><br>I have a combo box that has values from a table that are for the time being Desktop, Network, and Facilites. And when one if selected I have a corresponding combobox change its data to match up with the correct type (Destop,Network, or Facilites). is there a way to get it to check for this data some other way that saying if combo.value = blank then do this?<br><br>I am sorry if you can't understand what I am asking it is hard to explain.<br>