Hello,
I have a Filter form which I want to use to select records for a gallery from.
My gallery form has the following items property
SortByColumns(Search(Filter('[dbo].[View_Tasks]', ProjID = drpProject.Selected.ProjID And StartDate >= dteFilterStartDate ), TextSearchBox1.Text, "Memo"), "Memo", If(SortDescending1, Descending, Ascending))
The first part of the filter works regarding the selected project which the users selects from a drop down list of projects and I have data showing in the gallery. However the date filter does not. This part below.
" And StartDate >= dteFilterStartDate "
There is no error but no records are returned
The datepicker field is dteFilterStartDate and StartDate is field name in the datasource. What am I doin