
Ex. If cancellation_date__c is NULL then Today () - account_date__c, but if cancellation_date__c is not NULL then Today () - cancellation_date__c
Can someone help with the true syntax for this formula logic? Is this possible? Was trying to prevent creating 2 different fields -- 1 for tracking days account created and then 1 for days account til cancellation.
Thanks!
8 respuestas
Hi Nyota,
Ok your latest explanation makes it clear, so you need to count the number of days between Account creation date and cancellation date, if the cancellation date is blank use Todays date.Please try the below
DATEVALUE(account_date__c) - BLANKVALUE(DATEVALUE(cancellation_date__c) , TODAY())