Skip to main content

IF {Date:Time} matches {Date} Then {X}

  • December 28, 2020
  • 1 reply
  • 15 views

I’m trying to come up with a formula where if {Date Time} matches {Date}, then {abc} is displayed. Pls advise thank u

1 reply

JonathanBowen
Forum|alt.badge.img+18

Hi @zodeci - you need to format both date fields to a common format - something like this:

IF(
  DATETIME_FORMAT({Date/Time}, 'DD/MM/YYYY') = DATETIME_FORMAT({Date}, 'DD/MM/YYYY'), 
  'match', 
  'no match'
)