Adding Custom Record Field to New Record

Hi All,

Does anyone knows how to add custom record field in new record 21.2 with below scenario?

Custom field need to add on single DueDate record field. 

1. Groups based on Date difference does not work here since it required to two date fields.(Start and End date)

2. Own expression having limited functions to use(Why there is limitation on using functions while creating custom record field? Will it be changed in next upgrade?)

My scenario would be like this.(Below is SQL statement)

IF(
TO_DAYS(`CASE`.`DUE_DATE`) - TO_DAYS(CURDATE()) > 0,
'Before Due Date',
IF(
TO_DAYS(`CASE`.`DUE_DATE`) - TO_DAYS(CURDATE()) = 0,
'Due Today',
IF(
TO_DAYS(`CASE`.`DUE_DATE`) - TO_DAYS(CURDATE()) < 0,
'Missed Due Date',
'N/A')
))

  Discussion posts and replies are publicly visible

Parents Reply Children
No Data