Re: limit the number of times a user can use a flow
Hi @eez,
Do you want to limit a flow running times?
You could store the number of executions in an excel table or SP list. SP list better.
Now, every time your flow is triggered, first step is to read the counter from your SP list, then increment its value, add a Condition action block to evaluate if new counter value is greater than 3, now on the true branch add a Terminate action block. At the bottom of the flow, just after the Condition action block, place your current logic.