Hi,
I have a trigger set to start from when a file is created in a folder as below :
The trigger is set against the a document library having the below columns. I would want to trigger the flow only when a review date is entered against a document. Can anyone advise what trigger condition is required to be written in the flow step above.
Solved! Go to Solution.
I think it's better to type in application in the search bar, it's easier to find the trigger as there're not so many results.
In your case you need to scroll down a bit.
You can't use the 'When a file is created in a folder' trigger for that, that trigger doesn't contain any document properties = it doesn't know there's some 'Review date' in the file and what is its value.
Use the 'When a file is created (properties only)' trigger (you can select a Folder in that one as well), with a trigger condition
@not(empty(triggerBody()?['ReviewDate']))
You can't just add another trigger to the existing flow, you need to create new flow with that trigger.
Hi @tom_riha
How do I create a new flow with that trigger as I couldn't find that trigger to start a new flow creation ?
I think it's better to type in application in the search bar, it's easier to find the trigger as there're not so many results.
In your case you need to scroll down a bit.