PL-200 · Question #261
You have a classic workflow. The workflow updates a custom column on a record when an account record is created. The workflow must update the custom column based on the following conditions…
The correct answer is C. Add the two columns with the default value by using the Forms Assistant. C – Add the two columns with the default value by using the Forms Assistant is the correct answer. In classic Dataverse workflows, the Forms Assistant (accessed when setting a field value in an Update Record step) allows you to chain multiple dynamic values in a fallback…
Question
Options
- AAdd a formula that evaluates the two column values and uses the first populated value or else the
- BAdd an expression that evaluates the two column values and uses the first populated value or
- CAdd the two columns with the default value by using the Forms Assistant.
- DAdd check conditions to determine if the two columns contain data.
How the community answered
(53 responses)- A11% (6)
- B2% (1)
- C83% (44)
- D4% (2)
Explanation
C – Add the two columns with the default value by using the Forms Assistant is the correct answer.
In classic Dataverse workflows, the Forms Assistant (accessed when setting a field value in an Update Record step) allows you to chain multiple dynamic values in a fallback (coalesce) pattern - all within a single update step, without needing separate condition branches. You specify:
- Account Number field (used if not blank)
- Ticker Symbol field (used if Account Number is blank)
- The static text "N/A" (used if Ticker Symbol is also blank)
The Forms Assistant evaluates each value in order and uses the first non-empty result, matching all three requirements in one configuration.
Why the others are wrong:
- A – Add a formula: Classic workflows do not use formulas (that is a Power Fx/canvas app concept). The Forms Assistant is the correct tool, not a formula editor.
- B – Add an expression: Expressions in this sense belong to Power Automate cloud flows, not classic background workflows. Classic workflows use the Forms Assistant for dynamic values.
- D – Add check conditions: While you could build this logic using separate condition branches (If Account Number is blank → check Ticker Symbol → etc.), that approach is more complex and redundant. The Forms Assistant handles this coalesce pattern natively in a single step, making D an unnecessarily complicated alternative.
Topics
Community Discussion
No community discussion yet for this question.