Choice option on data type
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
8 hours ago
I wanted to add filter option : 1 business day, 3 business days, 2 business days,
In which module i can add them or this is possible
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
5 hours ago
@harshrohit We dont have is(dynamic)operator in created or updated field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
5 hours ago
When you will create dynamic filter option it will give is dynamic in your filter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
5 hours ago
It is not possible to add custom, hard-coded options (like "1 business day") directly into that native date drop-down menu
Instead of trying to add a new option to the drop-down, you can use the built-in relative operator to filter by business days.
why is is not possible :
Solved: Customize filter dropdown for dates in List View - ServiceNow Community
- It starts at Monday (Today).
- It looks backward and sees Sunday ➡️ Skips it (Not a business day).
- It sees Saturday ➡️ Skips it (Not a business day).
- It counts Friday (Day 1).
- It counts Thursday (Day 2).
- It counts Wednesday (Day 3).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
5 hours ago
Does relative operator automatically takes only business days ? because we dont have option to select 1 business days,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 hours ago
I am not sure it will exclude the weekends or not.Try this alternative approach,
If you filter for [Created] [relative] [on or after] [3] [days] [ago] on a Monday morning, the system will look back exactly 72 hours, meaning it will include all of Friday, Saturday, and Sunday.
[Created] [relative] [on or after] [5] [days] [ago]
[AND] [Created] [Trend] [after] [Sunday]
[AND] [Created] [Trend] [before] [Saturday]
- relative filter with a trend filter to strip Saturdays and Sundays