07-07-21 04:21 AM
Answered! Go to Answer.
07-07-21 07:00 AM
This is the formula for calculating the Monday of a given day. Use code stage.(Language is Visual Basic)
Input argument is "Today", data type is Date.
Output argument is "Monday", data type is Date.
Add "mscorlib.dll" and "System.Runtime.dll" to External References.
Monday = Today.AddDays((Today.DayOfWeek - 1) * -1)
07-07-21 06:38 AM
07-07-21 07:00 AM
This is the formula for calculating the Monday of a given day. Use code stage.(Language is Visual Basic)
Input argument is "Today", data type is Date.
Output argument is "Monday", data type is Date.
Add "mscorlib.dll" and "System.Runtime.dll" to External References.
Monday = Today.AddDays((Today.DayOfWeek - 1) * -1)
07-07-21 09:35 PM