Back to Knowledge Center
TechnologyMarch 17, 2026Kadim Karakuş

Power Automate with SharePoint Workflow Automation: 5 Practical Scenarios

When used together, Power Automate and SharePoint create a powerful platform for automating repetitive business processes. We walk through five practical scenarios step by step — from document approval workflows to automatic file classification, employee onboarding to contract renewal reminders — and address key considerations for performance and licensing.

Power Automate with SharePoint Workflow Automation: 5 Practical Scenarios

Why Power Automate and SharePoint Together?

SharePoint serves as the backbone of critical business processes in millions of organizations as an enterprise document management and collaboration platform. However, SharePoint alone has limited capabilities for automating business processes. This is precisely where Power Automate comes in.

Power Automate is Microsoft's low-code workflow automation platform. Through the SharePoint connector, it listens to events on SharePoint lists and libraries, processes data, and executes automated actions. This integration makes it possible to automate complex business processes without writing code.

Core Triggers of the SharePoint Connector

The Power Automate SharePoint connector offers various triggers to initiate workflows:

TriggerDescriptionUse Case
When an item is createdFires when a new item is added to a listNew requests, applications, or registrations
When an item is modifiedFires when a list item is updatedStatus changes, approval processes
When a file is createdFires when a new file is uploaded to a libraryDocument approval, classification tasks
When a specific column changesFires only when the specified column is updatedTargeted status monitoring
Scheduled trigger (Recurrence)Runs at specified intervalsReminders, periodic checks

In early 2026, Microsoft added significant improvements to the SharePoint connector. The new "Create an approval request for an item or file" action integrates approval processes directly with SharePoint's modern approval system. Additionally, SharePoint's Workflows interface is now accessible directly from within SharePoint and Teams, offering template-driven scenarios and a "Mad-Lib" style guided workflow creation experience.

In this article, we will walk through the five most commonly needed automation scenarios in enterprise environments using these capabilities. For each scenario, we cover the architectural design, step-by-step implementation guide, and key considerations.

Scenario 1: Document Approval Workflow

Document approval processes are the most common automation need in enterprise environments. Critical documents such as proposals, contracts, policy documents, and financial reports require review and approval by designated authorities. A structured automation process replaces manual tracking, email chains, and "pending approval" ambiguity.

Preparation: SharePoint Library Configuration

An effective approval workflow requires a properly configured SharePoint document library. Create the following columns:

Column NameTypeValues
Approval StatusChoiceDraft, Pending Approval, Approved, Rejected
ApproverPerson
Approval DateDate
Approver CommentsMultiple lines of text
DepartmentChoiceFinance, Legal, HR, IT, Sales

Step-by-Step Workflow Creation

Step 1 — Configure Trigger: Create a new cloud flow in Power Automate. Select "When a file is created (properties only)" as the trigger. Specify the site address and library name. Step 2 — Condition Check: Add a condition: Is the Approval Status column equal to "Draft"? This filter captures only newly uploaded files that have not yet entered the approval process. Step 3 — Update Approval Status: Use the "Update item" action to change the Approval Status column to "Pending Approval." This step makes it visually trackable that the document has entered the approval process. Step 4 — Initiate Approval: Add the "Start and wait for an approval" action. Select the approval type:
  • Everyone must approve: Parallel approval; all approvers must approve
  • First to respond: For situations requiring quick decisions
  • Sequential approval: For hierarchical approval chains (manager first, then director)

Determine the approver dynamically — you can pull the uploader's manager, select from a department-based approver list, or assign a fixed approver.

Step 5 — Process Results: Add branching (condition) based on the approval response:
  • If approved: Update Approval Status to "Approved." Write the approver name, date, and comments to the relevant columns. Send an approval notification to the file uploader. Optionally move the document to an "Approved Documents" folder.
  • If rejected: Update Approval Status to "Rejected." Record the rejection reason. Send a rejection notification with feedback to the file uploader.
Step 6 — Timeout Management: Set the timeout period for the approval action (e.g., 7 days). When the period expires, send a reminder email or escalate the approval to a senior manager.

Advanced: Multi-Stage Approval

In complex organizations, document approval processes pass through multiple stages. The new SharePoint approval action added in 2026 directly supports multi-stage approval. With this feature:

  • Documents are automatically protected from changes during approval
  • Approval status automatically appears in the SharePoint list
  • Approvers can respond directly from the list item

Scenario 2: Automatic File Classification and Labeling

Organizations produce and consume hundreds of documents daily. Proper categorization, labeling, and protection of these documents at the appropriate security level is critical for both productivity and compliance. Manual classification leads to inconsistencies and security gaps.

Approach: Metadata-Based Automatic Labeling

This scenario analyzes file name patterns, content type, and upload location to perform automatic metadata assignment and sensitivity labeling.

SharePoint Library Preparation

Column NameTypePurpose
Document CategoryChoiceInvoice, Contract, Policy, Report, Presentation
Sensitivity LevelChoicePublic, Internal Use, Confidential, Highly Confidential
Auto-ClassifiedYes/NoIndicates whether classification was automatic or manual
Review RequiredYes/NoFlags files requiring manual review

Step-by-Step Implementation

Step 1 — Trigger: Use the "When a file is created (properties only)" trigger. Specify the library name and folder path. Step 2 — File Name Analysis: Use the "Initialize variable" action to assign the file name to a variable. Then create multiple condition branches (Switch case or nested conditions):
  • If file name contains "INV" or "INVOICE" → Category: Invoice
  • If file name contains "CONTRACT" or "AGREEMENT" → Category: Contract
  • If file extension is ".pptx" → Category: Presentation
  • If uploaded from a specific folder → Assign the corresponding category
Step 3 — Content Type Check: Apply additional classification rules based on the file's content type. SharePoint's built-in content types serve as a valuable data source at this stage. Step 4 — Sensitivity Level Assignment: Automatically determine the sensitivity level based on document category and upload location:
CategoryDefault SensitivityCondition
InvoiceConfidentialContains financial data
ContractConfidentialLegally binding
PolicyInternal UseOrganizational rules
ReportInternal UsePerformance data
PresentationPublicUnless otherwise specified
Step 5 — Metadata Update: Use the "Update item" action to write the determined category, sensitivity level, and "Auto-Classified: Yes" values to the file's metadata. Step 6 — Review for Ambiguous Cases: For files that don't match any rule, mark as "Review Required: Yes" and send a notification to the document manager.

Microsoft Purview Integration

Organizations with E5 licenses can combine Power Automate with Microsoft Purview's auto-labeling policies to create a stronger classification layer. Purview supports Sensitive Information Types (SITs), trainable classifiers, and machine learning-based content analysis. Power Automate complements Purview by handling custom business rules and metadata enrichment beyond standard sensitivity labeling.

Scenario 3: New Employee Onboarding Process

For Human Resources departments, new employee onboarding is a complex process involving multiple departments, dozens of tasks, and tight timelines. With Power Automate and SharePoint, it is possible to make this process systematic, trackable, and largely automated.

SharePoint List Configuration: Onboarding Task List

Column NameTypeDescription
Employee NamePersonNew employee
Start DateDateFirst working day
DepartmentChoiceAssigned department
Task NameSingle line of textTask to be completed
Assigned ToPersonPerson responsible for the task
Due DateDateTask completion deadline
StatusChoicePending, In Progress, Completed
CategoryChoiceIT, HR, Department, General

Step-by-Step Implementation

Step 1 — Trigger: The flow triggers when HR personnel adds a new record to the main "New Employees" SharePoint list. Information in this list includes: employee name, start date, department, manager, and position. Step 2 — Task Template Generation: Use a second SharePoint list containing predefined task templates by department. The flow filters tasks from this template based on the new employee's department. Step 3 — Bulk Task Creation: Using an "Apply to each" loop, create a new item in the Onboarding Task List for each filtered task template. Calculate each task's due date dynamically based on the start date (e.g., "Prepare IT equipment 3 days before start date").

Typical task examples:

TaskAssigned ToTimingCategory
Create email accountIT3 days before startIT
Prepare laptopIT2 days before startIT
Create access badgeSecurity1 day before startGeneral
Complete payroll registrationHRFirst dayHR
Schedule team introduction meetingManagerFirst weekDepartment
Assign safety trainingHRFirst weekGeneral
Schedule 30-day performance reviewManagerDay 30Department
Step 4 — Notifications: Send an email or Teams notification to the responsible person when each task is created. The notification content should include the employee name, task details, and due date. Step 5 — Reminder Flow: A scheduled secondary flow scans the onboarding task list daily. It sends reminder notifications to assignees for tasks approaching their due date (1 day remaining) that are not yet completed. For overdue tasks, it sends an escalation notification to the manager. Step 6 — Completion Summary: When all tasks transition to "Completed" status, an onboarding completion summary report is sent to the HR manager.

Scenario 4: Contract Renewal Reminder

Contract management is a critical process, especially for organizations with hundreds of vendor, client, and service agreements. Missing contract renewal dates can lead to service disruptions, unfavorable automatic renewals, or legal risks.

SharePoint List: Contract Registry

Column NameTypeDescription
Contract NameSingle line of textIdentifying name of the contract
CounterpartySingle line of textVendor, client, or partner name
Start DateDateContract commencement
End DateDateContract expiration date
Annual ValueCurrencyContract value
OwnerPersonPerson responsible for the contract
DepartmentChoiceRelevant department
StatusChoiceActive, In Renewal, Renewed, Terminated
Reminder SentYes/NoReminder status

Step-by-Step Implementation

Step 1 — Scheduled Trigger: Configure the "Recurrence" trigger to run every Monday at 9:00 AM. Depending on contract volume, daily execution may also be appropriate. Step 2 — Filter Expiring Contracts: Use the "Get items" action to query the contract list. Apply an OData filter to identify contracts expiring within the next 90 days with "Active" status:

`` Status eq 'Active' and EndDate le '@{addDays(utcNow(),90)}' and EndDate ge '@{utcNow()}' ``

Step 3 — Tiered Reminder System: Calculate the remaining days for each contract and send tiered notifications:
Days RemainingActionRecipient
90 daysInformation emailContract owner
60 daysReminder + renewal initiation requestOwner + Department manager
30 daysUrgent reminderOwner + Manager + Procurement
14 daysEscalationSenior management
7 daysCritical alertAll stakeholders
Step 4 — Enrich Email Content: Each notification should contain the contract name, counterparty, end date, annual value, and a direct link to the SharePoint list. Presenting summary information in HTML table format improves readability. Step 5 — Status Update: After sending a reminder, update the contract's "Reminder Sent" column to "Yes." This prevents duplicate notifications for the same contract at the same stage. Step 6 — Renewal Approval Flow Integration: When the contract owner makes a renewal decision, a multi-stage approval process similar to Scenario 1 can be triggered: department manager → finance approval → legal review → signature process.

Bonus: Automatic Calendar Entry for Renewals

The flow can automatically add the date 90 days before contract expiration to a Microsoft 365 calendar. This ensures responsible parties also receive visual reminders on their calendars.

Scenario 5: Teams Notification with Integrated List Monitoring

In modern work environments, Microsoft Teams is the central communication platform. Instant notification of critical changes in SharePoint lists to Teams channels enables teams to take rapid action.

Use Cases

This integration suits various business processes:

  • When a new high-priority request is added to a support tickets list
  • When a task status is changed to "Blocked" in a project task list
  • When a new major opportunity is recorded in the sales pipeline list
  • When a new record requiring leave approval is created in the HR requests list

SharePoint List Example: Support Tickets

Column NameTypeValues
Ticket TitleSingle line of text
DescriptionMultiple lines of text
PriorityChoiceLow, Normal, High, Critical
StatusChoiceNew, Assigned, In Progress, Resolved
Assigned ToPerson
Created ByPerson
CategoryChoiceIT, Facilities, HR, Finance

Step-by-Step Implementation

Step 1 — Trigger: Use the "When an item is created or modified" trigger. Specify the site and list information. Step 2 — Condition Filter: Sending notifications for all changes creates information noise. Use condition branches to filter only significant events:
  • New item created AND Priority is "High" or "Critical"
  • Status changed to "Blocked"
  • Assigned person changed
Step 3 — Adaptive Card Design: Using Adaptive Cards instead of plain text in Teams notifications increases visual impact and information density. Your Adaptive Card template should include:
  • Ticket title and priority level (color-coded)
  • Description summary (first 200 characters)
  • Created by and assigned to person
  • Direct link button to the SharePoint list
  • Action buttons such as "Assign to Me" or "Reply"
Step 4 — Post to Teams Channel: Use the "Post a message in a Teams channel" action. Specify the target team and channel. Paste the Adaptive Card content in JSON format into the relevant field. Step 5 — Conditional Routing: Route to different Teams channels based on category:
CategoryTarget Channel
ITIT Support channel
FacilitiesFacilities Management channel
HRHR Operations channel
FinanceFinance Support channel
Step 6 — Escalation Flow: If high-priority tickets do not transition to "Assigned" status within a specified period, a scheduled secondary flow sends an escalation notification to the Teams channel and directly tags the manager.

Performance Note

The trigger polling interval is important for Teams notifications. The default interval is typically a few minutes. If near-real-time notification is required, consider using SharePoint HTTP webhooks for immediate triggering.

Performance and Licensing Considerations

Ignoring performance constraints and licensing requirements when building Power Automate automation with SharePoint can lead to serious issues in production environments.

Performance Limits and Throttling

The Power Automate SharePoint connector has a limit of 600 API calls per connection per 60 seconds. This limit is per connection; multiple flows using the same connection share this quota.

ParameterLimitNote
SharePoint API calls600 / connection / 60 secondsShared across all flows
Apply to each parallelismMaximum 50High values create throttling risk
Daily action limit (M365)6,000 actions / 24 hoursStandard Microsoft 365 users
Daily action limit (Premium)40,000 actions / 24 hoursPower Automate Premium license
Daily action limit (Per-flow)250,000 actions / 24 hoursPer-flow license

When receiving an HTTP 429 (Too Many Requests) error, Power Automate automatically retries but the flow slows down. Apply these strategies to prevent this:

  • Keep parallelism low: Set parallelism in Apply to each loops to 5–10 instead of 50
  • Limit trigger concurrency: Enable concurrency control in trigger settings and reduce parallel running flow instances to 1
  • Use batch operations: Perform multiple SharePoint updates via batch HTTP requests
  • Account for pagination impact: Pagination in "Get items" actions generates separate API calls per page

Licensing Model

License TypeMonthly CostIncluded Capabilities
Microsoft 365 (included)No additional costStandard connectors only, limited action quota
Power Automate Premium~€13 / userPremium connectors, desktop flows (RPA), 250 MB Dataverse
Power Automate Process~€130 / botUnattended desktop flows
Power Automate Hosted Process~€186 / botMicrosoft-hosted virtual machine included

The Power Automate entitlements included with Microsoft 365 licenses are sufficient for most scenarios in this article. However, if premium connectors (e.g., HTTP connector for custom API calls), AI Builder, or desktop flows (RPA) are required, a Premium license is mandatory. For high-volume automation scenarios, consider Per-flow licensing to avoid exceeding daily action limits.

Advanced: Copilot and Power Automate Integration

Microsoft 365 Copilot is transforming flow creation and management processes in Power Automate with AI. This integration aims to democratize automation access for both technical and business users.

Natural Language Flow Creation

With Copilot in Power Automate, you can now create flows using natural language. For example, a statement like "Send a Teams notification to the manager when a new file is uploaded to a SharePoint library" prompts Copilot to automatically generate a flow draft. With multi-step conversation support, Copilot can refine the flow incrementally, suggest parameters, and automatically configure connections.

Flow Analysis and Troubleshooting

Copilot can analyze your existing flows. It assists with error diagnosis through questions like "Why is this flow running slowly?" or "Show me the steps that failed in recent runs." It also has the capability to detect and repair automation errors in desktop flows (RPA).

Process Mining

Copilot generates process insights through natural language queries in Power Automate's process mining module. You can analyze process efficiency by asking questions like "Where are the bottlenecks in the invoice approval process?"

Automation Center

Copilot responds to natural language questions about flow run history, work queue performance, and product features through the Automation Center. This feature enables IT administrators to monitor automation infrastructure more efficiently.

Regional Availability

Copilot is available by default in regions with GPU infrastructure (US, UK, Australia, India). Desktop flow creation via Copilot is currently limited to the US; other desktop flow capabilities are available in additional regions. Copilot is currently optimized for English; performance in other languages may be limited.

Preparing for the Future with Copilot

The experience of creating the five scenarios in this article with Copilot is becoming increasingly easier. Our recommendation is to first understand and create the scenarios manually, then use Copilot as an accelerator and refinement tool. Always review Copilot's flow suggestions and verify compliance with your organization's security policies.

For more information about SharePoint's evolving capabilities, we recommend reviewing our New SharePoint Experience article.

Frequently Asked Questions

Is Power Automate free to use?

Power Automate's standard connectors are available at no additional cost with a Microsoft 365 license (E3, E5, Business Premium, etc.). Most SharePoint scenarios in this article can be built with standard connectors. However, premium connectors, AI Builder, or desktop flows (RPA) require a Power Automate Premium license.

How does Power Automate integrate with SharePoint?

Power Automate integrates directly with SharePoint lists and libraries through its built-in SharePoint connector. When creating a new cloud flow, simply select a SharePoint trigger (when an item is created, when a file is uploaded, etc.) and specify the site and list details. No code is required.

How many flows can you create with Power Automate?

There is no practical upper limit on the number of flows you can create. However, daily action limits apply: 6,000 actions with a Microsoft 365 license, 40,000 with a Premium license. The SharePoint connector has a limit of 600 API calls per connection per minute, so concurrency settings should be managed carefully to stay within this threshold.

Do you need a separate license for Power Automate?

No separate license is needed for basic automation scenarios; your Microsoft 365 subscription includes standard Power Automate entitlements. A Power Automate Premium license (~€13/user/month) or Per-flow license is required for premium connectors (HTTP, custom APIs), AI Builder, desktop flows, or high-volume automation scenarios.

Can Microsoft Copilot create flows in Power Automate?

Yes, with Microsoft 365 Copilot you can create flows in Power Automate using natural language. A statement like "Send a Teams notification to the manager when a file is uploaded to SharePoint" prompts Copilot to automatically generate a flow draft. Copilot is currently optimized for English and available in regions with GPU infrastructure.