Hi everyone
Is there a way to check if selected combo-box.value matches any textbox.value on a continues form within any other field on a continues form, if a use me.textbox.value it will not check all textboxs, it'll just check that specific record on a continues form, how do you do this to check all values (apart from the combobox of course)
Should I be using...if so how do I build my query, as I have tried this with no successCode:if Dcount ("*" qry_someQuery) >0 then
At the moment I have
Many thanks for readingCode:if me.combobox.value = me.someOtherTextBox.value then msgbox "Cannot assign this, try another value!!" me.combobox.value = "" end if![]()