Intro Make sure your flows can handle when things don’t go as expected: Error Handling and write a Log. Learning Objectives Error HandlingWrite a logJSON Parsing Description Create two number variables, A and BComposeAdd the two variables to each otherExpression: add(variables(‘A’),variables(‘B’))What happens if you change B to a text?Error we need to handleUse the Configure run after setting and create the rest of the flow, thatWrite a log with the status and an error message, if it appearsIn case of an error send an email withThe flow nameTime of the flow runThe statusThe error messageThe link to the flowSet the status of the flow to FailedCreate a Scope with three Scopes inTry CatchTryCatchFinallyLet it handle exceptions in our flow“Configure run after” in the following actionAdvancedDownload the Excel data for the lessonFor each row fill in the missing (create a log) Hints Code (expression) to get the link (URL) to a Microsoft Power Automate flow: concat('https://make.powerautomate.com/environments/',workflow()?['tags']?['environmentName'],'/flows/',workflow()?['name'],'/runs/',workflow()?['run']?['name']) Video