QuestionQ407
Extend the user experienceYou are extending a model-driven app by using modern commanding in Power Fx.
When a user selects a button on the Opportunity form, it must trigger an automation to generate a document by updating one Dataverse column. Users must confirm the action before it occurs and receive a message after it completes successfully.
You need to write the formula.
How should you complete the code segment?
Select
If( ( "This will proceed with generating the document. Proceed?" ), ( Opportunities, , {'Trigger Document Generation?': true} ); ("Document generation has been triggered.") )
Community Discussion