dcollard23
Registered User.
- Local time
- Today, 12:17
- Joined
- Jun 15, 2009
- Messages
- 87
How do I include a module in the formula below that excludes weekends and holidays. I don't know where to put the module.
Private Sub Date_AfterUpdate()
If Me.cboTransactionType = "BOR" Then
Me.Target_Date = CVDate(Me.Date + DLookup("[SLA Standard]", "[tblTMGTrans]", "[Transaction Type] = '" & Me.cboTransactionType & "'"))
End If
End Sub
Thanks
Private Sub Date_AfterUpdate()
If Me.cboTransactionType = "BOR" Then
Me.Target_Date = CVDate(Me.Date + DLookup("[SLA Standard]", "[tblTMGTrans]", "[Transaction Type] = '" & Me.cboTransactionType & "'"))
End If
End Sub
Thanks
