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.
Hi all
I am new to using Confluence. In one of my confluence page, I have inserted a Macro > Jira issue/filter to pull all information from 5 epics. I manage to do that by using the "key = EPIC number" and choose key, summary, type, created, updated, due date, assignee, reporter, proority, status, resolution. its works.
Now, I am thinking if I can allow x number of last comments per User story
Hi @Jimmy
Not natively; the Jira Issue/Filter macro is showing fields which are available as column data - there isn't a comment field as such.
We've gotten around this before using a custom field and automation - for example, we created a field called Last Comment:
You could do something similar in your scenario.
I'd consider whether the last 5 comments is necessary though - if they're looking at that many, wouldn't it be easier to just click-through and look at the Issue itself?
Ste
Thanks so much. Yes, seem like the easier way is to click through and look at the issue in Jira.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Looking to display the last 3-5 comments on a JIRA Dashboard.. Currently displaying the last comment in a field called "Last Comment"
{{issue.comments.last.body}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Jim Sheedy
It's possible - an alternative to the above smart value for last comment is...
{{issue.comments.getFromEnd(0).body}}
...but, you can change the "(0)" to get other comments also. So for example...
It's dynamic so will update as you add more comments.
You'll still need to visualise the data though - so either a field per comment, or one multi-text field for all 3-5 comments.
Ste
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.