SOLVED
Help with Date Filer
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
ShantanuDagar
8 - Asteroid
‎05-23-2023
05:10 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hello,
I have a MM/YY column.
The format of dates is yyyy-mm-dd
2023-05-23
2023-05-23
2023-05-01
2023-04-23
I want to filter based on year and month only.
Like in may 2023 I want all rows of may and 2023 which will be 1,2,3. Dates should be kept excluded from the filter.
Solved! Go to Solution.
Labels:
- Labels:
- Help
3 REPLIES 3
ShankerV
17 - Castor
‎05-23-2023
05:15 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
ShankerV
17 - Castor
‎05-23-2023
05:18 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Use the below formula, if you want to filter only 2023 alone.
datetimeformat([Field1],"%b") = "May" AND
Left([Field1],4) = "2023"
Input was:
Output:
Many thanks
Shanker V
‎05-23-2023
05:23 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thanks, works good
