I have a series of combo boxes that filter a dataset. In many cases having more than one of the combo boxes with a selection will yield no record matches. My thought is that when on of the combo boxes is selected the others could be reset. Problem is if each is looking at the other for a change the Reset is triggered for all of them.
Simple Example
ComboBox1 resets ComboBox2 if a selection is made in ComboBox1.
ComboBox2 resets ComboBox1 if a selection is made in ComboBox2 which triggers the OnChange of Combox1 which resets ComboBox2
How can I make this work? I think setting a variable might be the answer but not sure how to implement.