
The first month back in January, has a very particular energy.
Fresh intentions, slightly less fresh inboxes, and a growing suspicion that half your day is still spent doing the same admin you swore you’d never do again.
If 2026 is the year you want to work more efficiently, Power Automate is one of the quickest ways to make a visible and tangible difference.
With Copilot now living inside the Power Automate designer, it’s easier to build, understand, and improve flows without needing to be the person who “just knows how it all works”.
Microsoft’s release wave focuses on AI-first, enterprise-ready automation and Copilot-assisted flow creation, a clear signal that this is where things are heading.
Below are 15 practical tips, each with follow-along steps so you can try them for yourself!
Before you start (two-minute setup)
Open your browser and go to make.powerautomate.com, then sign in with your business account.
If you work across multiple environments, use the environment switcher in the top-right corner to pick the one you use for day-to-day work.
If you’re new to Power Automate, begin with a simple cloud flow. If you’re more advanced, you’ll recognise that plenty of these tips are just as useful at scale.
1. Audit your existing flows (and stop surprises)
If you already have flows, your fastest win is making sure they still make sense.
Here’s how to do it
In the left navigation, go to My flows. Switch the view to show cloud flows first, then sort by ‘Modified’. Open anything you don’t recognise. Look at the flow run history to see whether it’s still doing work. If it hasn’t run in months, ask whether it should be paused or retired.
How Copilot helps
In the flow designer, open Copilot and ask: “Explain what this flow does, step by step, and what systems it touches.” Then ask: “What are the failure points in this flow and how can I make it more resilient?”
What to aim for
A short list of flows you will keep, flows you will improve, and flows you will switch off.
2. Add descriptions and owner notes like it’s part of the build
Flows get inherited. Future-you (and your colleagues) deserve context.
Here’s how to do it
From My Flows, open a flow and go to ‘Details’. Update the flow description to answer three questions in plain English: what triggers it, what it does, and who the output is for. If you have a shared team, include an “Owner / Contact” note in the description.
How Copilot helps
In the designer, ask: “Write a clear description for this flow in two sentences, for a non-technical audience.”
What to aim for
Flows that can be understood at a glance without opening ten actions.
3. Pick a boring January process and automate it end-to-end
January is full of repeatable admin: policy acknowledgements, reminders, onboarding nudges, and reporting resets.
Try this example. A “weekly back-to-work checklist” reminder in Teams.
Here’s how to do it
Create > Scheduled cloud flow. Name it something obvious Like e.g., set it to run weekly on Monday morning. Add an action Microsoft Teams > Post a message in a chat or channel. Choose a channel (or yourself while testing) and write your checklist message.
How Copilot helps
Start with: “Create a scheduled flow that posts a Monday morning checklist message to my Teams channel and include a link to a SharePoint page.” Let Copilot draft the flow, then you simply fill in the channel and the link.
What to aim for
A quick, visible win that makes colleagues say, “Can we do that for…?”
4. Build error handling in from day one
A flow that only works on perfect days isn’t automation. It’s optimism.
Here’s how to do it
In the designer, open the ellipsis menu on a key action and choose Configure run after. Add a parallel “notify me” action that runs if the main action fails. For example, if your action creates a SharePoint item, add a Teams message or email that only runs on has failed or has timed out.
Add a “Scope” pattern. Wrap a set of actions inside a Scope called ‘Try’. Add a second Scope called Catch that sends your notification. Use Configure run after so Catch only runs when Try fails.
How Copilot helps
Ask: “Add robust error handling to this flow using scopes and notify a Teams channel with the error message.”
What to aim for
Failures that surface instantly, with enough detail to fix them.
5. Use Copilot to generate a first draft flow from a prompt
This is one of the biggest time-savers: start with intent, not with hunting for the right trigger.
Here’s how to do it
Create > Automated cloud flow (or Instant cloud flow). In the designer, open Copilot and describe the outcome you want in one sentence, including the system it starts in and the system it ends in.
How Copilot helps
A prompt that works well. “When an email arrives from our finance mailbox with an attachment, save the attachment to a SharePoint folder, then post a Teams message with the file link.”
Then refine. After Copilot drafts the flow, you fill in specifics: mailbox, SharePoint site, folder path, Teams channel, then run a manual test with a sample email.
What to aim for
Copilot does the scaffolding. You make the business decisions.
6. Keep triggers intentional (or you’ll build noise)
Automating everything is not the same as automating wisely.
How to do it
When choosing a trigger, ask whether the event is meaningful. For email triggers, use filters such as From, Subject, Importance, or has attachments. For SharePoint triggers, be precise about the site and library.
Practical example. If you use “When a new email arrives”, add trigger conditions so it only runs for specific subjects or senders, not the entire inbox.
How Copilot helps
Ask: “Suggest trigger conditions so this flow only runs when the subject contains ‘Invoice’ and the sender is our supplier domain.”
What to aim for
Fewer runs, higher value, happier users.
7. Use approvals for judgement, not for everything
Approvals are brilliant when a human decision is required but they can become a bottleneck when just a rule would do.
How to do it
Build your flow so that simple decisions are handled with conditions. Use Approvals only when the decision genuinely varies.
Try this approach. Add a Condition action. If the amount is under £500, auto-approve and continue. If it is £500 or over, send an approval.
How Copilot helps
Ask: “Convert this approval step into conditional logic where possible and only keep approvals for exceptions.”
What to aim for
Faster processes with control in the right places.
8. Standardise naming so your environment doesn’t become a junk drawer
A good name is governance; you don’t have to enforce it later.
How to do it
Decide on a pattern such as Department – Process – Trigger – Outcome. Example: HR – Onboarding – New Form Response – Create Checklist Tasks.
Then apply it. Rename older flows as you touch them. Update the description field as you go.
How Copilot helps
Ask: “Suggest a clear name for this flow based on what it does and who uses it.”
What to aim for
You can search and find flows without opening them.
9. Modularise anything you think you might reuse
If you find yourself building the same chunk of logic twice, then it’s time to make it reusable.
How to do it
Identify repeated steps (for example, “create a standardised Teams message”, or “format a SharePoint link”). Move that sequence into a child flow and call it from other flows.
Practical start. Create a new flow that accepts inputs, such as “message text” and “channel”, and posts your formatted notification. Then call it from other flows.
How Copilot helps
Ask: “Refactor this flow so repeated logic is moved into a child flow, and explain what inputs and outputs I need.”
What to aim for
Faster build time later, fewer maintenance headaches.
10. Use run history like a diagnostic tool, not a graveyard
Run history is how you turn “it doesn’t work” into “it fails on this step, but for X reason”.
How to do it
Open a flow, go to Run history, and open a failed run. Expand each action to see inputs and outputs. Look for red actions, missing IDs, permission errors, or unexpected null values.
Then improve. Add a Compose action to capture important values before they are used downstream. This makes debugging much easier.
How Copilot helps
Ask: “Analyse this failed run output and tell me the most likely cause and fix.”
What to aim for
Problems you can reproduce and solve, not mysteries that leave you scratching your head.
11. Add AI value inside flows, not just around them
Microsoft’s direction is clear: intelligent workflows are becoming the norm, not the exception.
Try this example. Auto-summarise an email and post it in Teams.
How to do it
Use an Outlook trigger for a specific mailbox or folder. Add an AI action (for example through AI Builder or supported generative actions, depending on your tenant). Pass the email body as input, ask for a short summary and key actions, then post that summary to Teams.
How Copilot helps
Ask: “Add an AI step that summarises this email into three bullet-free sentences and highlights any deadlines.”
What to aim for
Less reading, quicker decisions.
12. Secure your connections before you scale
Automation grows fast. So do security risks if you ignore ownership and connections.
How to do it
In your flow, check the Connections used. Make sure the connection isn’t tied to a personal account when the flow is business critical. Where possible, use service accounts or approved shared connections in accordance with your organisation’s policy.
Admin-minded check. If you have access, review Data Loss Prevention (DLP) policies and ensure sensitive connectors are appropriately grouped.
How Copilot helps
Ask: “Review this flow for security and governance risks related to connections and permissions.”
What to aim for
Flows that don’t break when someone change’s role or leaves the business, and don’t expose data by accident.
13. Use Copilot as a co-builder with business users
This is where adoption accelerates: when the business can describe what they need and IT or champions can guide safely.
How to do it
Run a short “automation surgery” session. Ask users to bring one repetitive process. In Power Automate, open Copilot and let them describe it in their own words. Build a draft together, then discuss governance and data considerations.
A prompt to start with. “Turn this process into a flow: when X happens, do Y, then notify Z. Ask me questions if something is unclear.”
What to aim for
People who feel ownership of automation rather than feeling automation is “done to them”.
14. Document flows as you go (because later never comes)
Documentation isn’t a separate and arduous task when you let Copilot and AI help.
How to do it
After your flow is working, ask Copilot: “Write documentation for this flow, including trigger, key actions, dependencies, and how to test it.” Paste that into your flow description, a team wiki, or a OneNote page.
Then add a quick test script. Write two short paragraphs: how to trigger a test run, and what success looks like.
What to aim for
A flow someone else can support without a meeting and detailed handovers.
15. Create an “automation habit” for 2026
The best organisations don’t ‘finish’ an automation. They make it a rhythm.
How to do it
Put a recurring monthly review in the diary. In that session, check the run history for top failures, identify duplicated flows, and list 3 improvements. Encourage teams to submit new ideas continuously but prioritise them based on impact and risk.
How Copilot helps
Ask: “Based on run history patterns, what are the top three improvements I should make to reduce failures and speed up performance?”
What to aim for
Automation that matures over time instead of sprawling.
A final note for the welcome-back month
Power Automate has always been about saving time and improving your business processes. In 2026, with Copilot embedded in the build experience and the broader move towards AI-first automation, it’s also about making work clearer, more consistent, and less dependent on who happens to remember the steps.
Start with one flow you can deliver this week. Then repeat, build and scale.
Share
Related Posts
Our most recent articles
11 June 2026
14 May 2026






