Dec 27, 2020 07:26 PM
I’m trying to come up with a formula where if {Date Time} matches {Date}, then {abc} is displayed. Pls advise thank u
Jan 02, 2021 09:43 AM
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' )