Hi,
I need a help about the filters using a gallery.
When i used a filter with a option "In" (Red color), the filters work fine but when i add the others filter with ">" or using dates, the filter doens't work.
See below the image of the filters/screem and the code applied in the Item property of gallery:

Sort(
Filter(
AddColumns(
TblMaterialMovimento;
"Saldo";
(Qtd_Estoque - Qtd_Expedida)
);
TxtPesquisa_ListaMaterial.Text in IdMaterial;
TxtPesquisa_ListaMaterial_IdOS.Text in IdOS;
TxtPesquisa_ListaMaterial_Locacao.Text in IdLocacao;
CbnListaMaterial_PlantaArmazem.Selected.IDPLANTA in IdPlanta_Armazem;
Saldo > 0;
Data_Ult_Locacao >= DatePicker_ListaMaterial_DtEstoqueInicial.SelectedDate And
Data_Ult_Locacao <= DatePicker_ListaMaterial_DtEstoqueFinal.SelectedDate
);
IdMaterial;
Ascending
);