Re: Search a Text within all completed flows
Hey @hifni
You can use the result function for this. Take out the output field from result function and store it in a SP List or an excel or any database of your own choice. And search for that text in your database.
So at the end of the flow. The action that contains your answer or text, add it to a scope. After that add a compose action and inside it write result('Scope_Name'). [Scope_Name=Name you have kept for the scope, default would be Scope only]
After this you can use parse json on the above compose.
After this just store the output field in another compose. And send it to the database you want to store to.
So result function is mostly used for logging. You can get other fields like name of the action, inputs and outputs for it. The final result of that action, was it successful or failed.
Heres how the flow looks like:


As I had taken 5 in the scope's compose, here in output I am getting 5. This you can store in the database everytime. Final Output:

I hope this helps.