Hi all!
Im trying to run a simple workflow in which I have an excel table with a column named ¨ConversationID¨, which has unique values. When I flag an email, the flow checks if the conversation ID is already inside my excel table, if not, write it. However im having trouble defining the condition. I tried using
length(outputs('Get_items')?['body/value']) equal to 0
equals(length(body('Get_items')?['value']), 1) 0 (the ID does not exist), or 1 (the ID exists)
However I run into this error message:
Flow save failed with code 'InvalidTemplate' and message 'The template validation failed: 'The action(s) 'Get_items' referenced by 'inputs' in action 'Condition_2' are not defined in the template
(sorry for bothering you guys!)