Occasionally, some flows have to run certain days within a month, and not necessarily every week.
Now let’s see how you can implement it in your flow.
For this example, I will create a flow that has a Recurrence trigger that will run every 1st and 20th of every month at 9:00 am.
The parameters I’m passing are :
| Parameter | Value |
| Interval | 1 |
| Frequency | Day |
| At These Hours | 9 |
| At These Minutes | 0 |

Now that I’ve passed the parameters, I have one more thing to add, which is the trigger condition.
@@or(equals(int(formatDateTime(utcNow(),'dd')),5),(equals(int(formatDateTime(utcNow(),'dd')),20)

I hope you’ve enjoyed this post and will find it helpful for your work.
