You need to sign in to do that
Don't have an account?
Bob_z
Date formula display text if true
I am trying to create a formula that compares a date field Like Acme_Date__c = TODAY() then display "TODAY" for atext value.
I'm not sure how to accomplish this result without getting errors
I'm not sure how to accomplish this result without getting errors
Try the below formula:
IF( Acme_Date__c = TODAY() , 'TODAY','')
Thanks,
Maharajan.C
All Answers
IF (TEXT(Acme_Date__c = TODAY(), "TODAY")))
Try the below formula:
IF( Acme_Date__c = TODAY() , 'TODAY','')
Thanks,
Maharajan.C
Maharajan!