This is my flow
when a row is added to a table (Table1) then check Status = Pending, if Pending send email alert. (frequency is run once a week)
Below is the error encountered:
Action 'Condition' failed: Unable to process template language expressions for action 'Condition' at line '0' and column '0': 'The template language function 'contains' expects parameters of matching types: a dictionary and a key (string), an array and a value (object), or a string and a substring. The provided types 'String' and 'Boolean' are incompatible. Please see https://aka.ms/logicexpressions#contains for usage details.'.
This is the condition
In the sharepoint there is an excel file column name Status
So if the status in the cell is Pending
then the actions continue - to send email alert.
In the Status column O (after column N), it has auto formula:
example:
=IF(N27<>"","Closed","Pending")
The format for column O is text.
Please advise what went wrong with the condition, everything looks ok to me.