Filter for comparing dates
Trying to create a filter to only display rows when dates in "Max Obtained Date (LW)" column are greater than dates in "Max License Status Date (NMLS) column. Any ideas?
Best Answer
-
You'll need to insert a helper column that flags rows that meet that criteria. Then you can create the filter based off of this new column.
Answers
-
You'll need to insert a helper column that flags rows that meet that criteria. Then you can create the filter based off of this new column.
-
Create a helper column using an if statement then use that for your filter.
Something like this:
=IF([Max Obtained Date (LW)]@row>[Max License Status Date (NMLS)]@row, 1, 0)Then the filter is insertNewColumnName = 1.
Do keep in mind you may have to account for null if there is a chance it may be present.
-
I believe you will need a helper column. (It can be hidden) You can use a checkbox column for the helper and set the formula to:
=IF([Max Obtained Date (LW)]@row > [Max License Status Date (NMLS)]@row, 1, 0)
You can then set your filter to only display rows in which your helper column is checked.
-
GOT IT!!! Thanks so much—You're the best😊
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.2K Get Help
- 462 Global Discussions
- 155 Industry Talk
- 506 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 81 Community Job Board
- 516 Show & Tell
- 35 Member Spotlight
- 3 SmartStories
- 308 Events
- 36 Webinars
- 7.3K Forum Archives