Advertisement
Guest User

Untitled

a guest
Jul 12th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. trigger UserIDpop on Contact (before insert) {
  2. if( ISBLANK(userid__c), userid__c = LastName,
  3. if( userid__c = LastName, userid__c = FirstName + LastName,
  4. if( userid__c = FirstName Last Name, userid__c = FirstName + LastName + MailingZipCode
  5. )
  6. ), ,
  7. ) }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement