In a filter, I'm adding a date range. Anything modified within that date should appear. To test this I modified an issue today, 3/21. In my formula I have
updated >= 2022-02-01 AND updated <= 2022-03-21
but it doesn't pull the issue I modified. If I change it to:
updated >= 2022-02-01 AND updated <= 2022-03-22
it does pull the issue I modified today. The first formula should work since its less than OR equal but it's not counting things modified today, 3-21. Anyone know why?
Hi @Kelli Keith ,
Welcome to the community.
"2022-03-21" will be considered as "2022-03-21 00:00". so it is returning requests updated before this time stamp.
You can use time stamp also, if you want to search the tickets updated before particular on that date or you use next date.
ex: updated <= "2022/03/22 06:00"
updated <= "2022/03/23"
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.