Help

How to track when changes were made

1020 1
cancel
Showing results for 
Search instead for 
Did you mean: 
Pam_Cowart
4 - Data Explorer
4 - Data Explorer

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?

1 Reply 1

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' )