How can I fill 2 values under each other/highlighted in blue in emailAddress in Contact Entity from Lead Entity with record\create ? The Lead record has 2 custom fields: personalEmail and professionalEmail that I need to fill in/create/copy to emailAddress (1 field in Contact)
The formula is only creating the firstName and lastName fields in Contact from the Lead Entity
Code:
record\create( 'Contact', 'firstName', firstName, 'lastName', lastName, 'emailAddress',list(personalEmail, professionalEmail) );
Comment