I currently have a JQL query that pulls data for a due date of today and into the future.
due >= now()
However, I have been asked to show dates going back to the start of the previous month. For example, if today is June 23, I need to return all values going back to May 1st (i.e. the start of the previous month).
Much appreciated!
OK, just figured it out myself:
due >= startOfMonth("-1")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.