26% of Part II — group lifecycle from connection to membership.
4 tasks · this deck covers task 3 of 4
↑ Create Groups OverviewThe Create Group card's Name input (Task 2) rarely gets a hardcoded string in a real flow — it gets built dynamically from other fields using Number and Text functions, so the group name reflects data captured earlier in the flow (a department, a date, a request ID).
"When you're adding, subtracting, splitting, or concatenating inputs, the manipulation of both numbers and text is a critical piece of building an automation." Three text functions matter most for constructing a group name:
Compose is the go-to for building a group name from multiple pieces — e.g., stitching a department name and a request ID together.
These matter when a naming convention requires pulling a substring out of an existing value (e.g., trimming a domain suffix before appending it to a group name).
"Number functions are used to perform common math operations, such as Add, Subtract, Multiply, and Divide," plus more complex ones like Round, Remainder, and Factorial — useful if your naming convention embeds a sequence number or calculated value.
Watch for this in your own sandbox run:
→ Forgetting that Find returns -1, not an error or empty value, when the search text isn't present — a downstream branch checking for "not found" needs to test for -1 specifically.
→ Reaching for Concatenate when Compose already covers the same ground plus HTML/Markdown formatting.
Sources: help.okta.com — Numbers and text (type=wf&id=ext-about-numbers-text)
Next: Task 4 →