Sarim Khan
05/08/2026, 5:22 AMAnthony OConnor
05/08/2026, 3:34 PMCASE WHEN {systemnotes.field} = 'Name/ID' THEN {systemnotes.date} ELSE NULL END
Then you can use the date and max again in another formula field and concat the old and new values into a single column result - again change the text for the field you need
CASE WHEN {systemnotes.field} = 'Name/ID' THEN TO_CHAR({systemnotes.date}, 'YYYYMMDDHH24MISS') || '|' || NVL({systemnotes.oldvalue}, '-None-') || '|' || NVL({systemnotes.newvalue}, '-None-')END