Automatic export of filters results

Lukas
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
June 21, 2021

Hello all,

is there a possibility to automatically export the result of a filter as CSV to a specified directory?

2 answers

1 vote
Aron Gombas _Midori_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
June 22, 2021

You can automatically export issues to custom Excel spreadsheets with this app. Then you can turn that XLSX to CSV with another automation.

0 votes
Hyrum Steffensen _Appfire_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 22, 2021

Hello Lucas,

You can export the contents of a filter using Power Scripts. Consider the following example:

string [] issues = selectIssuesByFilter("All The Issues");
printInFile("output.csv", "issue, summary, description");
for (string issue in issues) {
    printInFile("output.csv", issue + "," + issue.summary + "," + issue.description);
}

Here is the documentation for the routines used:

selectIssuesByFilter()

printInFile()

Regards,

Hyrum

Due to Confluence Cloud security features, you may need to open the documentation in incognito mode or by logging out of Confluence.

Please note that I am a product engineer for Power Scripts and that I work for Anova Apps (Appfire).

Suggest an answer

Log in or Sign up to answer