Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. [Account].Lawyer__c / Is changed / Boolean / True
  2. [Account].RecordType.Name / Equals / String/ Plantiff
  3. [Account].Contracts_Currently_Open__c / Greater than or equal / Number / 1
  4. Conditions: All of the Conditions are met (AND)
  5.  
  6. "Changed Lawyer from " & if(not(isBlank(PRIORVALUE([Account].Lawyer__c ))) ,PRIORVALUE([Account].Lawyer__c.FirstName ) & " " & PRIORVALUE([Account].Lawyer__c.LastName ) & " to " ,"") & if(not(isBlank([Account].Lawyer__c)), [Account].Lawyer__c.FirstName & " " & [Account].Lawyer__c.LastName ,"")& "; "
  7. & PRIORVALUE([Account].Lawyer_Changes__c)
  8.  
  9. ​​​​​​​(Custom Field: Status__c / Data Type:Formula:
  10. if( or( text(Funding_Status__c) = "Repaid" , text(Funding_Status__c) = "Written Off"),"Complete",
  11. if(and(Total_Fundings__c = 0 ,or(text(Case_Stage__c) = "Settled - Won" , text(Case_Stage__c) = "Lost")),"Closed",
  12. if(Total_Fundings__c > 0,"In Progress","Open")))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement