You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I have a confluence page in which I want to fill count of issues based on my pre-defined Jira queries using Jira Issues Macro (via JQL). The returned value is always having a suffix “issues”. How to get only he number without the suffix?
My query is related to the Jira Macro page https://confluence.atlassian.com/doc/jira-issues-macro-139380.html
Hi @Arvind Sinha ,
If you insert the issue count option in a table cell, You can remove the word 'issues' with the help of the Table Transformer macro (the Table Filter and Charts for Confluence app).
Please find the detailed instructions in the answers to this question.
Hello @Natalie Paramonova [Stiltsoft] ,
Thank you so much for this help. It works.
However, with this the clickable links with the numbers are also removed, so we can't go to the list of filtered jira issue by clicking the numbers. Is there any way to achieve that as well?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Arvind Sinha ,
You can apply the following query to preserve Jira filter links:
SELECT T1.'Date',
FORMATWIKI( "["+(T1.'Count'->split(" issues")->0::number) +"|" +
T1.'Count'->tfView->match("href=([^ >]*)")->1->slice(1, -1)
+ "]"
) AS 'Count'
FROM T*
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Arvind Sinha ,
Welcome to the Atlassian Community. If you are referring to "issues" which is displaying the issue count on a Confluence page, "100 issues", then it is the default one and it cannot be removed.
Thanks,
Amith Mathur
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.