I have a command button that I want to carry all the dates on my form by 1 day. However, where there is a box with no date I need it to do nothing in that box. I want it to only carry the date where there is a date already in the box. Can anyone help me with this? Here is what I have now:
If Len(Nz([To_DocuTech], ""
) = 0 Then
[To_DocuTech] = ""
Else: [To_DocuTech] = To_DTP + 1
End If
If Len(Nz([To_DocuTech], ""
[To_DocuTech] = ""
Else: [To_DocuTech] = To_DTP + 1
End If