
2 answers
Several years late to this but posting in case anyone else needs it. My use case is when someone emails into a Salesforce case but they are not yet a contact, I would like to create a contact for them with the Supplied information.
I'm handling this with two flow formulas:
First Name
New Resource: Formula
Data Type: Text
Formula: LEFT({!$Record.SuppliedName}, FIND(" ", {!$Record.SuppliedName}) - 1)
Last Name
New Resource: Formula
Data Type: Text
Formula: RIGHT({!$Record.SuppliedName}, LEN({!$Record.SuppliedName}) - FIND(" ", {!$Record.SuppliedName}))