Introduction

As organizations generate more data over time, keeping SharePoint lists, Dataverse tables, or other data sources clean and efficient becomes increasingly important. Old or inactive records can impact performance, make searches more difficult, and clutter business applications.

An Archival Flow in Power Automate helps solve this problem by automatically moving old records from an active data source to an archive location while preserving the information for future reference. This approach improves system performance, simplifies data management, and supports compliance requirements.

What is an Archival Flow?

An Archival Flow is an automated process that:

Common archive locations include:

Why Use an Archival Flow?

Benefits include:

Example Scenario

Suppose you have a SharePoint list named Employee Requests.

EmployeeRequest TypeStatusCompleted Date
Emp101LeaveCompleted15-Jan-2024
Emp102TravelCompleted10-Feb-2024
Emp103EquipmentOpen

Business Requirement:

How the Flow Works

Trigger
   ↓
Recurrence (Runs Daily)
   ↓
Get Items from SharePoint
   ↓
Filter Completed Records Older Than 180 Days
   ↓
Apply to Each Item
   ↓
Create Item in Archive List
   ↓
Delete Original Item
   ↓
Send Summary Email (Optional)

Step-by-Step Implementation

Step 1: Create a Scheduled Flow

Step 2: Get SharePoint Items

Add the Get items action.

Configuration:

Step 3: Filter Old Records

Example Filter Query:

Status eq 'Completed'

You can also filter using Power Automate conditions.

Example Condition:

Completed Date <= addDays(utcNow(),-180)

Step 4: Archive the Record

Inside Apply to each:

Add Create item

Destination:

Copy all columns:

Step 5: Delete Original Record

After successful archive:

Add

Delete item

This keeps the active list clean.

Step 6: Send Notification (Optional)

Send an email to the administrator.

Example:

Subject:
Employee Requests Archived

Body:
25 completed requests have been archived successfully.

Flow Diagram

Schedule Trigger
        │
        ▼
Get Items
        │
        ▼
Completed?
        │
   Yes ─┘
        │
        ▼
Older than 180 Days?
        │
   Yes ─┘
        │
        ▼
Create Item in Archive List
        │
        ▼
Delete Original Item
        │
        ▼
Log Success / Send Email
archived

Best Practices

Common Use Cases

Conclusion

An Archival Flow in Power Automate is an effective way to keep business applications fast, organized, and maintainable. By automatically moving inactive records to an archive location while preserving historical data, organizations can improve performance, simplify maintenance, and meet data retention policies with minimal manual effort.