I’m writing a formula that looks at certain fields and counts whether or not it is filled out. At the end, I will divide it by the number of fields in order to get a completion percentage. I’m having trouble doing this with rich text fields.
This is the formula it work until the two last lines which are rich text areas.
If(ISBLANK(Salesforce_Enrollments__c ),0,1)+
If(ISBLANK(Total_Referrals__c ),0,1)+
IF(ISPICKVAL(Enrollment_Targets_Score__c, “–None–”), 0,1)+
IF(ISPICKVAL(Participant_Retention_Score__c, “–None–”), 0,1)+
If(ISBLANK(Funder_Outcomes__c ),0,1)+
If(LEN(Enrollment_Explantion__c = 0),0,1)+
If(LEN(Retention_Explanation__c = 0),0,1)