Hello everyone,
i just cant figure out how to check if textbox value > than listbox selected value
this is what i have so far
If Me.txtbox1>(greater than) Me.listbox1.ItemsSelected Then
thanks
Hello everyone,
i just cant figure out how to check if textbox value > than listbox selected value
this is what i have so far
If Me.txtbox1>(greater than) Me.listbox1.ItemsSelected Then
thanks
If it's not multiselect try
If Me.txtbox1>Me.listbox1 Then
perfect, thank you, it works! thanks a lot