Assuming saturdays is required, the following 3 results were found.
= v_EventStart; r_RowFr.End_Time = v_EventEnd; r_RowFr.In_Effect = true; c_Friday.insert(r_RowFr); // // create Saturdays subform entries r_RowSa = Shifts.Saturdays(); r_RowSa.Event_Type = v_EventType; r_RowSa.Start_Time = v_EventStart; r_RowSa.End_Time...
over the next few days which needs to dynamically change. I am aware of the function .addBusinessDay() but that excludes Saturdays which my client still works on. How? We're going to get today's date, then use the .addDay(), check none of these are a...
m_Delete); info r_Delete; } } } Caveat(s) I've set it to only remind on business days excluding Saturdays and Sundays but you could modify the above to simply AddDay(n) instead of AddBusinessDay(n) if your guys operate over the weekends. The task will...