Hello,
I'm new to Power Automate, but it seems like it might solve a problem for me: creating an event at 8am one day before another manually created event's start time
Requirements:
When user creates calendar event "A", then create event "B" one day before that starts at 8:00AM and ends at 10:00AM.
The problem with event "A", is that ideally, it's Start Time can be scheduled at anytime, so simply using
addDays(triggerBody()?['start'], -1) or addHours(triggerBody()?['start'], -'x') doesn't really help if the Start Time for "A" could be at any time on the start date. I can create event B on the right day, but not at the right time. It also won't be created at a consistent time, so neither Start or Created Times seems to help.
Is there another method I can use preset or specify a start time at 8:00AM (perhaps some variable?), and then use addDays() to change the date? Hoping for some help or to be pointed in the right direction, as I'm struggling to be able to create an event at a specific date and time in relation to another event which was created. Appreciate any ideas ahead of time. Here is what I've got so far: