Automated and scheduled triggers
1. Scheduled and automated flows
Every flow you've seen built so far has started with a button click, which is the Instant flow. Real automation happens without you needing to be there, so let's meet the other two flow types, Scheduled and Automated.2. Scheduled flows and the Recurrence trigger
A Scheduled cloud flow runs on a clock, and when you create one, Power Automate adds the Recurrence trigger automatically. That trigger is the engine behind the schedule. You set the Frequency, which can be hour, day, week, or month, along with the Interval, like every 1 day or every 3 hours. There's one step everyone forgets, which is setting the time zone. The default is UTC, which probably doesn't match your business hours, so if you want a weekly report every Monday at 9 AM New York time, set the time zone explicitly, otherwise it'll run at 9 AM UTC.3. No trigger outputs
One thing that catches everyone off guard is that Recurrence triggers have no outputs. The Dynamic content panel after a Recurrence trigger is completely empty, with no date, no time, no data at all, because Recurrence just fires on a schedule and doesn't produce any information. To get the current date or yesterday's date, you'll need to use expressions. The utcNow expression gives you the current timestamp, and wrapping it in addDays minus one gives you yesterday. You'll use this pattern constantly in scheduled flows.4. Automated triggers
Automated triggers are the opposite pattern. Instead of running on a clock, they fire the moment something happens, like a new email arriving in Outlook, a new item being created in SharePoint, or a form response being submitted. And unlike Recurrence, automated triggers produce rich outputs, so the email subject, sender, attachment, and list item fields all appear in the Dynamic content panel for every action that follows. That's the key difference, where Recurrence gives you a schedule with no data, while Automated gives you an event packed with data.5. Choosing the right trigger
Quick recap before we leave triggers. Remember, Recurrence runs on the clock with no data, automated triggers fire on events with rich data, and Instant triggers run on demand from a button. This table is your cheat sheet, so start from the question of whether your flow needs to respond to something happening, or whether it needs to run at a specific time, and the right trigger falls out.6. Let's practice!
Now it's time to give a flow a schedule and see how the Recurrence trigger works hands-on.Create Your Free Account
or
By continuing, you accept our Terms of Use, our Privacy Policy and that your data is stored in the USA.