I have made a scenario that copies events in my Work Office 365 Calendar to our family calendar on Apple Calendar. I would now like to filter events so that the only events that copy are those on the weekend, or on a weekday that start before 9:00 a.m. and end after 4:30 p.m. I’ve tried using a filter to do this, but don’t find it intuitive or easy to code. Any assistance would be appreciated.
Hey Ryan
can you show the filters you have at the moment?
For weekends you can use formatDate(datetimevar; d) to get day of the week and check if its 0 or 6 for the weekend.
Then for the times you can use formatDate(datetimevar; HH:mm; yourtimezone) and check if its before 9:30 am or after 4:30 pm.