Objective : Use a scheduled flow to send an email with list of all current date " banquet events". (includes multiple day events that started before current date but end after current date)
Data : Sharepoint Online Event List (Banquet Event Calendar)
Current Issue :
Filter Array Object :
- From Sharepoint Get Items
- @And(greaterOrEquals(startOfDay(utcNow()), item()?['EventDate']),@lessOrEquals(startOfDay(utcNow()), items('Apply_to_each')?['EndDate']))
Obviously , that will not work.
Is there a way to filter all list items and return only items where the current date (startOfDay(utcNow()) falls between the Event List's EventDate and EndDate?
Thank you greatly for your help!