Skip to main content
Solved

IF AND Formula Help!

  • June 20, 2024
  • 2 replies
  • 35 views

Forum|alt.badge.img+3
  • Participating Frequently

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!

Best answer by TheTimeSavingCo

Does this look right? 

IF( {Date/Timestamp}, IF( {Advanced Record} = "ADVANCED", IF( DATETIME_FORMAT( {Date/Timestamp}, "HH" )>21, "Late", "On time" ) ) )

2 replies

TheTimeSavingCo
Forum|alt.badge.img+31

Does this look right? 

IF( {Date/Timestamp}, IF( {Advanced Record} = "ADVANCED", IF( DATETIME_FORMAT( {Date/Timestamp}, "HH" )>21, "Late", "On time" ) ) )

Forum|alt.badge.img+3
  • Author
  • Participating Frequently
  • June 20, 2024

Thank you!!