Can I display the Priority name/description in the Issues Filter results in Confluence

Maureen McManus May 5, 2017

I would like to display the name of the Priority as well as the the icon when I use the Issues Filter to display JIRA issues in Confluence. Is this possible?

2 answers

1 vote
Katerina Kovriga {Stiltsoft}
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.
February 10, 2022

Hi there,

As this question mentions our Table Filter and Charts for Confluence app, we are happy to introduce its new macro – Table Spreadsheet.

The macro allows you to work with fully functional Excel spreadsheets right in Confluence.

You’ll be able to use cells’ formulas, filters, conditional formatting, etc., create pivot tables and charts from the page view and edit mode.

The Table Spreadsheet macro is available for Cloud and Server/Data Center.

1 vote
Fabian Lim
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
December 11, 2021

Hi Maureen,

Unfortunately, the priority column only shows the icon.  You can use the following plugin that can help: https://marketplace.atlassian.com/apps/27447/table-filter-and-charts-for-confluence?hosting=cloud&tab=overview 

Regards

Katerina Kovriga {Stiltsoft}
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.
December 13, 2021

Hi @Maureen McManus ,

As @Fabian Lim has mentioned, our Table Filter and Charts for Confluence app and its Table Transformer macro can really do the trick: wrap your Jira Issues macro into our Transformer and list all the possible statuses and their colors via the custom SQL query.

Here is an example for our local Jira instance:

SELECT *,
CASE
WHEN 'P' LIKE "Major"
THEN FORMATWIKI("{status:colour=Red|title=Major}")
WHEN 'P' LIKE "Minor"
THEN FORMATWIKI("{status:colour=Blue|title=Minor}")
WHEN 'P' LIKE "Critical"
THEN FORMATWIKI("{status:colour=Black|title=Critical}")
WHEN 'P' LIKE "Trivial"
THEN FORMATWIKI("{status:colour=Green|title=Trivial}")
ELSE FORMATWIKI("{status:colour=Grey|title=Blocker}")
END AS 'Priority'
FROM T1

Mon 3-1.png

The "P" column can be hidden if necessary (not listed in the Table Transformer macro or hidden via the Table Filter macro if you further proceed to filter your Jira table).

Hope this may help your case.

Like # people like this

Suggest an answer

Log in or Sign up to answer