SOLVED
Remove or Filter out current month
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
PassION_es
10 - Fireball
‎06-09-2022
07:59 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi,
I simply want to remove rows with current month.
I currently have this formula.
[Risk Date]<=DateTimeNow()
What else do I need to add from the DateTimeNow?
Thanks
Solved! Go to Solution.
Labels:
- Labels:
- Common Use Cases
3 REPLIES 3
17 - Castor
‎06-09-2022
08:05 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hey @PassION_es,
Try in a filter tool:
[Risk Date]<=DateTimeTrim(DateTimeNow(),"firstofmonth")
Datetime trim can convert a date to the start or end of a month
Or you can try:
DateTimeMonth([Risk Date])<=DateTimeMonth(DateTimeNow())
Date time month returns the month of a date as a number
‎06-09-2022
08:54 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thanks @IraWatt
17 - Castor
‎06-09-2022
08:56 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
No worries @PassION_es !
