Hi
I need help with the formula, I'm having difficulty adapting a formula.
First, the data source is in Sharepoint (List), there are 5 columns, it's called CHP.

And PowerApps, has a calendar, gallery and form.

I am trying formula with the gallery, I managed to filter the list by date, the formula is:
SortByColumns(Filter(CHP;Text('Data do Inicio';DateTimeFormat.ShortDate) = Text(_dateSelected;DateTimeFormat.ShortDate)); "Data_x0020_do_x0020_Inicio")
I am also trying 1 more filter for dropdown, which is name list, wanted to filter by name to see the list.
SortByColumns(Filter(CHP;Text('Data do Inicio';DateTimeFormat.ShortDate) = Text(_dateSelected;DateTimeFormat.ShortDate)); "Data_x0020_do_x0020_Inicio");; Filter(CHP; ‘Usuários’ = dropdown2.Selected.Value)
Appeared as an error, could you help me how to filter the dated hold?