I am not too familiar with VBA in Access, but I would like if someone could show me how to ignore a caption and it's field in an Access 2010 Report and an Outlook Email when the field value is it is empty.
'Here is some relevant code (next three lines):
'In the body of email, if the value is null/empty, then I do not want the field name to appear in the body of the email, ignored.
'Here is some relevant code (next three lines):
Code:
Dim DesiredRequiredDate As String DesiredRequiredDate = Me!DesiredRequiredDate "Desired Required Date:" & " " & DesiredRequiredDate
Comment