• Lumber Dev
  • NEWBIE
  • 0 Points
  • Member since 2019

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies
Hi All,

VERY new to salesforce and being an admin in general. I am trying to create a field on a custom object to provide "True" if the time the object was last modified is earlier than or equal to the current Date/Time. I created a custom field to provide the date and time last modified already and that is working as it should. I am using:

IF ( NOW() - Date_Time_Last_Modified__c <= 7200000 ,"TRUE", "FALSE" )

But it is returning True always even if the statement is not.  I am not sure if something is wrong with my formula?