- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-30-2024 09:17 AM
Why are tickets opened in the current month also being displayed when using the condition builder for "Opened tickets in the last 3 months"
For example, if the report is run in December, it should only show tickets opened in Sept, Oct and Nov.
Does ServiceNow treat months as days instead of considering the exact month? Can some please help here.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-30-2024 09:46 AM
ServiceNow's last 3 months condition calculated arolling 90-day range, not exact calendar months. to show only tickets from specific months (e.g., sep-nov) use custom date filter or a scripted query specifying the exact start and end dates.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-30-2024 09:29 AM
Hi @tanveer Last 3 month consider current month as well.
This filter has used two javascript method in the backend gs.beginningOfLast3Months() and
gs.info(new GlideDateTime(gs.beginningOfLast3Months())+ ' ' + new GlideDateTime(gs.endOfLast3Months()));
Thanks,
Harsh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-30-2024 09:46 AM
ServiceNow's last 3 months condition calculated arolling 90-day range, not exact calendar months. to show only tickets from specific months (e.g., sep-nov) use custom date filter or a scripted query specifying the exact start and end dates.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-31-2024 01:30 AM
Yes, i think its taking days and not a exact month for the query - "last 3 months"