For checking the time you can use the hour and minute functions
HOUR(LAST_MODIFIED_TIME(Field)) < 16 //check if field was modified before 4pm
To check with minute accuracy you can combine HOUR and MINUTE with AND
AND( (HOUR(LAST_MODIFIED_TIME(Field)) < 16), (MINUTE(LAST_MODIFIED_TIME(Status)) < 31 ))
I’m not sure from your post how date factors in , but if it does you can add a check for that as the first parameter in the AND function
Keep in mind you may need to accommodate for GMT times
For checking the time you can use the hour and minute functions
HOUR(LAST_MODIFIED_TIME(Field)) < 16 //check if field was modified before 4pm
To check with minute accuracy you can combine HOUR and MINUTE with AND
AND( (HOUR(LAST_MODIFIED_TIME(Field)) < 16), (MINUTE(LAST_MODIFIED_TIME(Status)) < 31 ))
I’m not sure from your post how date factors in , but if it does you can add a check for that as the first parameter in the AND function
Keep in mind you may need to accommodate for GMT times
Thanks, that was the right way to approach it. I ended up using DATEADD to adjust for the timezone difference.