How do I only capture items resolved in the last 30 days?

Jeremy_Johnson December 19, 2019

How do I only capture items resolved in the last 30 days? I have tried using "AND resolved < startOfMonth(-1m)"  and it doesn't seem to work at all. Has anyone solved this problem?

2 answers

2 accepted

0 votes
Answer accepted
Ignacio Pulgar
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.
December 30, 2019

Hi @Jeremy_Johnson,

Issues resolved within the last 30 days:

resolved > -30d

Issues resolved since the 00:00 hours of the first day of last month:

resolved > startOfMonth(-1)

Hope it helps.

Jeremy_Johnson January 6, 2020

Thanks, this worked for me.

0 votes
Answer accepted
Warren
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.
December 19, 2019

Hi @Jeremy_Johnson 

You almost had it (change < to >), try

AND resolved > startOfMonth(-1m)
Jeremy_Johnson January 6, 2020

Thanks!

Suggest an answer

Log in or Sign up to answer