function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
grandak koygrandak koy 

See when a record is created and is less than today's date


How can I check and see when a record’s created date is created today but has to be created before 5pm Today PST?

Ex. Check and see if the package that came in today was created before 5pm PST.

If so, mark the package's status "ready"
Raj VakatiRaj Vakati
Create a foumual field to check the result to true if the record is create before 5 PM 

Formual Return type Checkbox 

Formula
 
CreatedDate > NOW() -7


 
grandak koygrandak koy
How is Now()-7 representative of today before 5pm? I can't create a field because I don't have any more fields available.