23% of Part II — the last use case, per the exam's own recommended order.
3 tasks · this deck covers task 2 of 3
↑ Create a Report OverviewThe official study guide's task list truncates this line. Based on the use case name ("Create a Report") and the surrounding context, we're reading it as "by user type" — but that phrase is our inference, not a verbatim quote.
Given a list of user objects, the List function Group By will "extract a list, grouped by the values in the original list at the specified path" — pointed at a user-type field, this produces one sub-list per distinct user type.
For each resulting sub-list, Length "finds the number of items in a list" — giving you the user count for that one type. Run through each group (e.g. with For Each, which "processes a list by calling a helper flow for each item") to get a count per user type.
The Numbers and Text page confirms Number functions cover "Add, Subtract, Multiply, and Divide" plus more advanced options like "Round, Remainder, and Factorial." Add sums the per-type counts back into a grand total for the report.
Watch for this in your own sandbox run:
→ Grouping by the wrong path — Group By needs the exact field path in the user object where the type value lives, not just a loose label.
→ Confusing List's Length (item count) with a Number function — Length is a List function, not a Number function, even though its output is a number.
Sources: help.okta.com/wf — function-reference/functions.htm#list; learn/about-numbers-text.htm
Next: Task 3 →