How can you schedule a flow on just weekdays?SummaryFlow Designer has a trigger to execute flows on a daily basis. How can you exclude weekends?InstructionsThe Daily trigger does not support excluding weekends. To resolve this you can create a subflow and trigger this from a scheduled job. The subflow doesn't have a trigger but you can execute it via script. A scheduled job gives you more flexibility in terms of scheduling. - Create a subflow and publish it- Created a scheduled job which runs daily - To ensure it only runs un weekdays use this for the Condition: var answer = false; var now = new GlideDateTime(); if(now.getDayOfWeek() < 6){ answer = true; } answer; - Use this script:var inputs = {}; var contextId = sn_fd.FlowAPI.startSubflow('global.CS5405755', inputs);