Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Find jira's created between 6am to 3pm for all days of current month.

I want to filter the issues created between 6am to 3pm, for which i have tried :

1)AND created > startOfDay("+6h")  AND created < startOfDay("+15h")

But this only shows the current day issues created between 6am to 3pm.

2)AND created > startOfMonth("+6h") AND created < endOfMonth("+15h")

3)AND created >= "2018/06/01 6:00" AND created <= "2018/06/30 15:00" 

But it shows the issue of the whole month,the 6am to 3pm filter can't be applied

 

Can anyone help me to "find the issues created between 6am to 3pm for all days of current month ??"

1 comment

Payne
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.
Jul 05, 2018

If you have ScriptRunner installed, you could use a regex approach such as:

issueFunction in issueFieldMatch("project=BR and created > '2018-06-01' and created < '2018-07-01'",created,".* (06|07|08|09|10|11|12|13|14):.*") 

Is there anything instead of going for scriptrunner ??

Comment

Log in or Sign up to comment