An Azure service for ingesting, preparing, and transforming data at scale.
Hi @M, Pratibha
Azure Data Factory does not natively support scheduling a trigger on the "last working day of the month". A Schedule Trigger can only be configured for the last calendar day of the month using monthDays: [-1].
If your requirement is the last working day (excluding weekends and/or holidays), a common approach is to:
- Schedule the trigger to run on the last few days of the month (for example, 28–31), or on the last calendar day using
monthDays: [-1]. - Add logic within the pipeline to determine whether the current date is the last working day.
- If holidays must also be considered, maintain a holiday calendar (for example, in a table or file) and validate against it before proceeding.
Therefore, this requirement cannot be achieved using an ADF Schedule Trigger configuration alone; additional pipeline logic is required.