Expressão Cron

hi my friend do you know why the expression */15 8-18 * * 1-5 doesn’t work in UiPath? and if you have one that works thank you
parameter Monday to Friday every 15 minutes from 08:00 to 18:30

Hi @Lucas_Marte

Use the below cron expression

0 0/15 8-18 ? * MON-FRI
  • 0: Specifies the seconds at which the trigger should occur.
  • 0/15: Specifies that the trigger should occur every 15 minutes.
  • 8-18: Specifies the range of hours from 08:00 to 18:00.
  • ?: Specifies that no specific day of the month is required.
  • *: Specifies that no specific month is required.
  • MON-FRI: Specifies that the trigger should occur only on Monday to Friday.

Hope it helps!!

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.