Hello ,
I want to filter items in the gallery in power apps to find items created, for example, in one month.
I created two data picker, and I want to choose two dates, and find items between them.
I wrote formula in items properties of the gallery:
Filter(
'Instrukcje Tymczasowe',
Created < DatePicker2_1,
Created > DatePicker2_2
)
But it doesn't not work. How should I do that ?