Microsoft Flow - SharePoint Online document approval based on user input value (Properties/ Metadata)
Because, Microsoft Flow does not have trigger to fire on document check-in (versioning enabled on document library).
What came to mind is to have a "wait until" action which we had in other workflow systems.
So, I had included "Do Until" action checked until there is a value in "Title". In my scenario, I considered "Title" as required column.
Microsoft flow advanced mode expression to check property as below;
@not(empty(body('Get_file_properties')?['Title']))
Comments
Post a Comment