I'm checking if an Account record exists based on the value of the accountName field in a Lead record. If it exists, I don't want to create a record in 'Accounts', else create the record.
Can I do it like this using the workflow formula (target Entity is 'Lead '):
Can I do it like this using the workflow formula (target Entity is 'Lead '):
Code:
ifThen(
!record\exists('Account', 'name=', accountName),
record\create('Account', 'name', accountName))

Comment