web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Automate / Need help with clearin...
Power Automate
Unanswered

Need help with clearing filters on populated excel tables

(0) ShareShare
ReportReport
Posted on by 21
Dear all,
 
I have managed to populate some data into created excel tables by power automate. However, I need to clear the filters that are automatically generated after the tables are created as the image below. I used the following script (after the image) from office scripts to clear those filters with no luck. Can you help me fix this problem?. Thank you
 
 
 
 
 
function main(workbook: ExcelScript.Workbook) {
    // Get the active worksheet
    const sheet = workbook.getActiveWorksheet();

    // Get all tables in the worksheet
    const tables = sheet.getTables();

    // Clear filters for all tables in the worksheet
    tables.forEach((table) => {
        const filter = table.getAutoFilter();
        if (filter) {
            filter.clearCriteria();
        }
    });

    // Clear filters applied directly to the worksheet
    const autofilter = sheet.getAutoFilter();
    if (autofilter) {
        autofilter.clearCriteria();
    }

    console.log("All filters cleared.");
}
 
Categories:

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Leaderboard > Power Automate

#1
11manish Profile Picture

11manish 249 Super User 2026 Season 2

#2
Mohsin Ali Profile Picture

Mohsin Ali 202

#3
David_MA Profile Picture

David_MA 180 Super User 2026 Season 2

Last 30 days Overall leaderboard