I have a query "qry_Combo_DivName" that displays distinct values of division name. I have a combobox that I want blank until the dropdown is clicked. Shouldn't this code work? It just displays a blank list.
Private Sub combo_MDV_DES_TXT_Click() 'name of combobox
Me.combo_MDV_DES_TXT.RowSource = "qry_Combo_DivName"
Me.combo_MDV_DES_TXT.Requery
End Sub
Thanks!
Private Sub combo_MDV_DES_TXT_Click() 'name of combobox
Me.combo_MDV_DES_TXT.RowSource = "qry_Combo_DivName"
Me.combo_MDV_DES_TXT.Requery
End Sub
Thanks!