Re: Monthly reminder to Project owner
For the first step, use the Run Flow on Schedule as Brad linked. That's how to get the Flow to run.
However, I'm guessing you are also asking for the logic on how to check if 2 or more conditions are met.
I'd do something like this:
varConditions = 0
If condition1 = True, varConditions + 1
If condition2 = True, varConditions + 1
If condition3 = True, varConditions + 1
If condition4 = True, varConditions + 1
If varConditions gt (greater than) 1, then send the email.
If this post answers your question, please mark as Solved so others may find the answer more quickly.
If you like this reply, please click the Thumbs Up button.