Hi ,
Im a beginner to Power Apps and I’m building a staff weekly schedule calendar in Power Apps. The calendar shows dots on dates that have programs. When a user selects a date, I want to display all program details for that date in a gallery on the right side.
My data source is an Excel table (Table1_1). I tried using this formula in the gallery Items property:
Filter(Table1_1, Program = _dateSelected)
But I get this error:
“Invalid filter clause: unsupported operation. Only 'eq', 'ne', 'contains', 'startswith' or 'endswith' is currently supported.”
I used this to connect the dates to the calandar
!IsBlank(
LookUp(
Table1_1,
DateValue(Text('Session Date'))=DateAdd(_firstDayInView, ThisItem.Value, TimeUnit.Days),Program
)
)
How can I correctly filter the gallery by the selected calendar date so that when a user clicks a date, the programs for that date appear on the right side?
Thank you