Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. Account.Class_of_Trade__c = Residential
  2. Account.Terms__c = Net 30 Days
  3.  
  4. IF(
  5. OR(
  6. AND(ISNEW(), [Account].Run_Credit_Report__c),
  7. AND(
  8. ([Account].Run_Credit_Report__c),
  9. ISCHANGED([Account].Run_Credit_Report__c)
  10. )
  11. ),
  12. true,
  13. false
  14. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement