Current code:
If Me.Tick7Day Then
Me.Text7Day = Date()
Else
Me.Text7Day = ""
End If
Okay, I have a check box and a text box on my form, but I need some assistance with complex VB code to make something work. At the moment if the check box is TRUE then the current date will be displayed in the label box. However, what I now need is code to make this box display the date + seven working days.
I've tried to look at various Internet sites, but they mostly talk about working days between two dates and that's not really what I want.
Basically letters are sent out that expire seven working days from the sent date and need that information within the database.
Many thanks.
*edit*
I'm from the UK so it must be UK complaint with UK working day dates etc etc.
If Me.Tick7Day Then
Me.Text7Day = Date()
Else
Me.Text7Day = ""
End If
Okay, I have a check box and a text box on my form, but I need some assistance with complex VB code to make something work. At the moment if the check box is TRUE then the current date will be displayed in the label box. However, what I now need is code to make this box display the date + seven working days.
I've tried to look at various Internet sites, but they mostly talk about working days between two dates and that's not really what I want.
Basically letters are sent out that expire seven working days from the sent date and need that information within the database.
Many thanks.
*edit*
I'm from the UK so it must be UK complaint with UK working day dates etc etc.