I'm trying to build a flow that will move a sharepoint document after it's been approved and notify the approval admin if the incorrect comment syntax has been used. Currently the flow successfully starts an approval process and links to the relevant document. I have a basic condition that checks whether the "approval response" is equal to "approve" and if not, to send an email and delete the file. The tricky part is if the condition is correct, to then check the "approval comment" field and decide what to do with the file in question. I am using these conditions as a means to scan the comment section and then redirect the file into the relevant folder. @or(equals(body('Start_an_approval')?['comments'],'Approved'),contains(body('Start_an_approval')?['approved'], 'approved')) @or(equals(body('Start_an_approval')?['comments'],'asap'),contains(body('Start_an_approval')?['comments'], 'ASAP')) @or(equals(body('Start_an_approval')?['comments'],'Follow'),contains(body('Start_an_approval')?['comments'], 'follow')) I would like to add a notification so that if none of the above conditions are met the user is notified once. I guess it would would look something like: condition 1 If yes > move file to location 1 If no > proceed to final notification step condition 2 If yes > move file to locaiton 2 If no > proceed to final notification step etc
I have the same question (0)