
EnrolForm - Checkbox
IP - Text field
StudentSignature - Formula (text)
If IP__c not blank, ‘Digital signature ‘&IP__c,
else if EnrolForm__c = Y, ‘Enrolment form’
else blank
Help to solve this
1 respuesta
Create a text formula field, and the formula is ..
if ( ISBLANK(IP__c) , if ( EnrolForm__c = true , "Enrolment form" , "" ) , Digital_signature__c & IP__c )Please, mark the best answer if it is.