You are creating a cloud flow for an automation targeting Dataverse. When a new account is created in Dataverse, the name of the account must be updated based on the following logic: • If the Account Category Code equals Preferred Customer (1), pre append the value Preferred | to the name. • If the Account Category Code equals Standard (2) or is not populated, pre-append Standard | to the name. You need to define the correct formula to use for the automation. Which formula should you use? A. if(equals(triggerOutputs()?['body/accountcategorycode'), 1), concat('Standard | ', triggerOutputs()?['body/name']), concat('Preferred | ', triggerOutputs()?['body/name'])) B. if(equals(triggerOutputs()?['body/accountcategorycode'), 2), concat('Standard ', |triggerOutputs()?[‘body/name']), concat('Preferred | ', triggerOutputs()?['body/name'])) C. if(equals(outputs('trigger')?['body/accountcategorycode'], 1), concat('Standard | ', outputs('trigger')?['body/name']), concat('Preferred | ', outputs('trigger')?['body/name'])) D. if(equalsfoutputs('trigger')body/accountcategorycode'], 2), concat('Standard | ', outputs('trigger')?['body/name']), concat('Preferred | ',outputs('trigger')?['body/name'])) Suggested Answer: B This question is in PL-200 Microsoft Power Platform Functional Consultant Exam For getting Microsoft Certified: Power Platform Functional Consultant Associate Certificate Disclaimers: The website is not related to, affiliated with, endorsed or authorized by Microsoft. The website does not contain actual questions and answers from Microsoft's Certification Exams. Trademarks, certification & product names are used for reference only and belong to Microsoft.
Please login or Register to submit your answer