Hello again folks,
I'm trying to write some code to add on business days for a follow up.
In the after update of my field I have;
If [Date Modified] = (Weekday(Date) = 1) And [Status] = "submitted" Then
[ActivatorFollowUpDate].Value = [Date Modified] + 3
End If
If [Date Modified] = (Weekday(Date) = 2) And [Status] = "submitted" Then
[ActivatorFollowUpDate].Value = [Date Modified] + 3
End If
so on and so on - the intention is to find the day of the week and add on 3 business days so if it's Friday it will add 5 to the Date Modified and fill that date into ActivatorFollowUpDate
I'm sure my syntax is totally wrong I just am not sure where to go next