Tag not monitored by Microsoft.
To replicate the UiPath condition terms.Contains("opt") or warning=true in Power Automate Desktop (PAD), you can use the If action with a logical expression. In PAD, you would set up your condition using the OR operator to check both conditions. Here’s how you can do it:
- Add an If Action: Drag the If action into your flow.
- Set the Condition: In the condition field, you can write a logical expression that checks if
termscontains "opt" or ifwarningis true. The expression would look like this:%contains(terms, 'opt') or warning = true%Here,contains(terms, 'opt')checks if the stringtermscontains the substring "opt", andwarning = truechecks if the variablewarningis true. - Define Actions: Inside the If block, you can define the actions that should be executed if the condition evaluates to true.
This approach allows you to effectively translate the UiPath condition into Power Automate Desktop using logical expressions.
References: