Hi @Abhishek Pandey and welcome to our Community!
Try something like that:
project = <project name> AND created > startOfDay(-1) AND created < endOfDay(-1)
Hi @Abhishek Pandey,
As Grigory has said, use this filter and then add a gadget in your Dashboard with this filter. You need to share the filter with everyone that will have access to this Dashboard or the gadget won't work
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Good addition, thank you, @Cristian Rosas [Tecnofor]:)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Abhishek Pandey- you might also consider sharing with "logged in users" instead of "everyone" depending on your security and access control standards. "Everyone" allows anyone who can reach the Jira server to gain a tiny amount of visibility which some Security folks dislike. :-)
~~Larry Brock
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
project = <project name> AND created > startOfDay(-1) AND created < endOfDay(-1)
This function is not working Sir.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Abhishek Pandey!
What do you mean it does not work? How can you tell?
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.
Here what worked for me:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I made dashboard gadget (rich filter) to show issues created today, yesterday, then -2 day thru -7 days ago.
Smart values on the rich filter for Issue Created:
Today: created >= startofday() and created <= endofday()
Yesterday: created >= startofday(-1) and created <= endofday(-1)
...
7 days ago: created >= startofday(-7) and created <= endofday(-7).
But the gadget only shows today, but I'm guessing tomorrow it will show today and yesterday and in a week will have all 7 days.
I believe this is correct as (-7) = 7 days in the past, while (7) would be <impossible> 7 days in the future.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.