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

Notifications

Announcements

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:
I have the same question (0)

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

Forum hierarchy changes are complete!

In our never-ending quest to improve we are simplifying the forum hierarchy…

Ajay Kumar Gannamaneni – Community Spotlight

We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…

Leaderboard > Power Automate

#1
Michael E. Gernaey Profile Picture

Michael E. Gernaey 501 Super User 2025 Season 2

#2
Tomac Profile Picture

Tomac 323 Moderator

#3
abm abm Profile Picture

abm abm 237 Most Valuable Professional

Last 30 days Overall leaderboard