Skip to main content

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 件の回答
  1. 2011年9月22日 8:51
    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.

     

0/9000