Hi everyone,
I'm working with a calendar in Power Apps and would like to display only those events whose Subject contains the word "Booking". Currently, the Visible property of C_Circle2 is set to:
CountRows( Filter( MyCalendarEvents, DateValue(Text(Start)) = DateAdd(_firstDayInView, ThisItem.Value, Days) ) ) > 0 && !Subcircle1.Visible && Title2.Visible
How can I modify this formula so that it only counts/displays events where the Subject field contains the text "Booking" in addition to matching the selected date?
Any suggestions or examples would be appreciated. Thanks!