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.
Objective: To show the number of JIRA's created for each month for first quarter
Issue: Incorrect count shown for first month and zero for rest all months
Below is the rich filter and smart filter created in JIRA
My Rich Filter - "project = ABCD"
Smart Filter created
Inflow Rate
Label JQL
JAN created >= "2023/01/01" AND created <= "2023/01/31"
FEB created >= "2023/02/01" AND created <= "2023/02/28"
MAR created >= "2023/03/01" AND created <= "2023/03/31"
Added Rich Filter Smart Counter macro to confluence and expected to see the results as
14 6 28
JAN FEB MAR
But results shown as
2 0 0
JAN FEB MAR
When I looked JQL built internally for FEB to under stand the root cause, what i noticed is JQL is as below
project=ABCD AND resolved >="2023/01/01" AND resolved <="2023/01/31" AND created >= "2023/02/01" AND created <="2023/02/28"
Ideally the JQL should be
project=ABCD AND created >= "2023/02/01" AND created <="2023/02/28"
But unfortunately I don't have control over that JQL built.
Can anyone help let me know where did I go wrong ? Note: The same above Rich Filter is working fine on JIRA dashboard with Rich Filter Smart Counter gadget. The issue is only with Confluence results.
Resolved. Not sure what went wrong. could be some sort of glitch. Built a new rich filter from scratch which is similar the previous one and macro's working fine
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.