How to correctly compare dates? I’m trying to create a formula that says if the transaction date creation is after Sept. 9th, 2023, then show ‘A’ else ‘B’. I tried the following but neither worked. The “curly” quotes were just automatically converted by Slack. Our date format is DD.MM.YYYY. TO_DATE(TO_CHAR({datecreated},‘dd.mm.yyyy’)) > TO_DATE(‘05.09.2023’) - results in invalid expression error
TO_CHAR({datecreated},‘dd.mm.yyyy’) > ‘05.09.2023’ - results in incorrect results