Good day everyone! I have a problem with the filtering part of my application. I am already using this code;
Tablebindingsource.filter = "Prereq Like '" & textbox.text & "%'"
it searches for values from Table whose Prereq value = textbox.text. My concern is, how about if there are several items in the Prereq field and they are separated by commas
(Ex. IT111,IT112,IT113). All of these items must be checked. I need a filtering method that searches my Table based on the different values from the Prereq field.
Anyone, please...