In a formula-type column, the EXTRACT_ELEMENT() function extracts a specific element from a value containing several elements (a text list), and always returns a text-type result. Typical use cases: retrieving the first action performed, identifying the last step of a process, extracting a specific value from a concatenated field.
Syntax
Parameters
Important rules
Examples
Case 1: extract the first element
"Contact, Proposal sent, Meeting scheduled, Closed won" becomes "Contact". Useful for knowing the first action taken.
1 → Source data (list of elements)
2 → Formula that extracts the 1st element
3 → Final value displayed in the table
Case 2: extract the last element (the most common)
"Contact, Proposal sent, Meeting scheduled, Closed won" becomes "Closed won". Ideal for displaying the current state or the last step reached.
1 → Source data (list of elements)
2 → Formula that extracts the last element
3 → Final value displayed in the table
Case 3: use a custom separator
If the elements are separated by a character other than the comma (e.g. ";"): "Email; Call; Meeting; Closed lost" becomes "Email".
1 → Source data (list of elements)
2 → Formula that extracts the 1st element while explicitly setting the ";" separator
3 → Final value displayed in the table
Common mistakes
Go further
SUBSTITUTE
Replace all occurrences of one text with another.
Or continue with
Formula glossary
All available operators and functions, organized by category.