- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-02-2022 01:32 PM
What is the best way to schedule a flow twice a year on exact dates and time? The flow should be triggered on every 1st of Feburary and 1st of August. As the flow trigger itself does not allow to set it up in this way, should I create a scheduled job to trigger it on those dates (and if yes, how?) or what would be the best solution?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-02-2022 01:44 PM - edited ‎11-02-2022 01:49 PM
Schedule the flow to run on the 1st of every month. Then you may need a custom action to return true or false to verify the month. Then have an if statement to continue the flow if the action return true or just end it.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-02-2022 01:44 PM - edited ‎11-02-2022 01:49 PM
Schedule the flow to run on the 1st of every month. Then you may need a custom action to return true or false to verify the month. Then have an if statement to continue the flow if the action return true or just end it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-20-2025 11:25 PM
Hi Wasd123,
you can run flow on 1st of every month and use below custom action
I have got similar requirement to create a task on 1st day of every quarter
Solution:
I have created a custom action with below fields and script
fields:-
Input - input_date (date/time)
Output - monthNumber (integer)
script:-
Later I have used if condition to check the month number =1,4,7,10
Regards
Reddy Surendra