Okay...this one has me stumped.
I have a gallery on my form called "galMinutes" and am using the following filters to filter for specific data:
Filter(FCTminutes,
And(
Or(
IsBlank(dpStartDate.SelectedDate),
Date >= dpStartDate.SelectedDate
),
Or(
IsBlank(dpEndDate.SelectedDate),
Date <= dpEndDate.SelectedDate
),
Or(
IsBlank(dpGradeLevel.Selected.Value),
Grade.Value = dpGradeLevel.Selected.Value
),
Or(
IsBlank(dpFilterSchool.Selected.Value),
Title = dpFilterSchool.Selected.Value
),
Or(
IsBlank(dpFCTname.Selected.Value),
'FCT Name' = dpFCTname.Selected.Value
)
)
)

If I add the following code to the 'items' property of my dpFCTname dropdown box:
Sort(Distinct('FCTminutes', 'FCT Name'),Value)
The gallery filters without error. But when I try to filter the dpFCTname dropdown box based on the School (title) dropdown box I get an error in the filter of my gallery:

So ultimately I would like to filter my dpFCTname dropdown based on the School Dropdown (dpFilterSchool) and Grade Level dropdown box (dpGradeLevel). But haven't got there yet 'cause I keep erroring out with just trying to filter based on the school dropdown (dpFilterSchool).
Any ideas would be most appreciated.