I am trying to wrote a formula which calculates between two date/time fields.....a closed date and another date.
First it needs to check if the closed date is blank and if it is, the calculation is NOW() - another date else the calculation is closed date - other date.
I tried this and got a character limit error.
IF(ISBLANK(ClosedDate),NOW() - ENT_2__Actual_First_Response__c ,
ClosedDate - ENT_2__Actual_First_Response__c)
4 answers
Hi Nick, Please try the below and see if you are still getting the character limit error
BLANKVALUE(ClosedDate,NOW()) - ENT_2__Actual_First_Response__c