Hi,
Does anyone know how to filter issues by what day of the week they were created on? I want to see for example all issues that were created on a Monday since the start of the year.
Thanks!
I've have only done this using ScriptRunner to create a script field that returns a formatted portion of the date. e.g. year-mth
import
java.text.SimpleDateFormat
import
java.util.Date
SimpleDateFormat
DATE_FORMAT =new
SimpleDateFormat(
"yyyy-MM"
);
String date = DATE_FORMAT.format(issue.created);
returndate
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.