Jan 02, 2020 08:57 AM
I’ve been making changes in a database and now may need to report those changes elsewhere. How can I track which records have been changed in the past 4 months?
Jan 02, 2020 09:15 AM
Add a formula field with a formula similar to this:
IF(DATETIME_DIFF(TODAY(),LAST_MODIFIED_TIME(),'months')<5, 'Track These Records', 'Edited 5 or more months ago' )