Help

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

369 0
cancel
Showing results for 
Search instead for 
Did you mean: 
zodeci
4 - Data Explorer
4 - Data Explorer

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 1

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'
)