I have a datagridview of officials and can filter them through the name of each official through this code:
FuncionariosBindingSource.Filter = "nome like'%" & TextBox1.Text & "%'"
In this same datagridview I have a "year" column that is marked the official entry, I would like to know if I have to filter the name and year of the official. For example in textbox1 type "Joao" and in textbox2 type 2015, there would only be Joao 2015.
Could someone help me?