Jun 20, 2024 07:06 AM
Hello!
I have two fields that I want to meet certain criteria to return a value in another field.
Return Value "Late" if field 1: Advanced Record contains "ADVANCED" and Field 2: If Date/Timestamp is after 10p EST otherwise return "On Time" if Date field is empty have this field stay empty
Thanks!
Solved! Go to Solution.
Jun 20, 2024 07:54 AM
Does this look right?
IF(
{Date/Timestamp},
IF(
{Advanced Record} = "ADVANCED",
IF(
DATETIME_FORMAT(
{Date/Timestamp},
"HH"
)>21,
"Late",
"On time"
)
)
)
Jun 20, 2024 07:54 AM
Does this look right?
IF(
{Date/Timestamp},
IF(
{Advanced Record} = "ADVANCED",
IF(
DATETIME_FORMAT(
{Date/Timestamp},
"HH"
)>21,
"Late",
"On time"
)
)
)
Jun 20, 2024 02:42 PM
Thank you!!