you will need a function to do that
place this codes in a module
Function getDeadLineDate(dDate As Date, Span As Integer) As Date
Dim j As Integer, i As Integer, dtStart
dtStart = dDate
For j = 1 To Span
dtStart = dtStart + 1
Do While Weekday(dtStart) = 1 Or Weekday(dtStart) = 7 '_
dtStart = dtStart + 1
i = i + 1
Loop
Next
getDeadLineDate = DateAdd("d", i + Span, dDate)
End Function
to use
If [State or Federal Mandates_ID] = 4 And [Review Level_ID] = 2 Then
[Determination Compliance Deadline D/T] = getDeadLineDate([Request D/T],2)
End If