S
Swordfish
Good Day All,
I am trying to create the note below in the Click On \ Event Property –
which is added in the body of an email. I am having repeated problems and
continue to go back and forth with little success. Also, I am not sure how to
have the coding not show all on one line in the VB editor. Can you help?
The coding I have is further below.
Good Day,
Please note; you have been assigned the following WIT entry
DataTRAK Number – (Linked field with number) Effective Date: (Link to form
field Effective Date)
Production Assigned - (Link to the drop down field)
QA Reviewer Assigned - (Link to the drop down field)
Second Tester Assigned - (Link to the drop down field)
Claims Monitoring Assigned - (Link to the drop down field)
Thanks
Private Sub SendEmail_Click()
Dim SendTo As String
SendTo = DLookup("[EmailAddress]", "tblBenefitsEmployee", "[EmployeeID] =
" & Me.Productionassignedname)
SendTo = SendTo & ";" & DLookup("[EmailAddress]", "tblBenefitsEmployee",
"[EmployeeID] = " & Me.Q_A)
Call ComposeNotesMemo(SendTo, "Production Assigned and QA Assigned", "Good
Day," & vbCrLf & vbCrLf & "Please note; You have been assigned the following
WIT entry: DataTRAK Number --- " & Me.Datatrak_Number & vbCrLf & vbCrLf &
"Effective Date " & Me.EFFECTIVE_DATE & vbCrLf & vbCrLf & “Production
Assignedâ€, & Me.Production Assigned, & vbCrLf & “QA Reviewer Assignedâ€, &
Me.QandALead & vbCrLf & vbCrLf & “Second Tester Assignedâ€, & Me. Sectester &
vbCrLf & “Claims Monitoring Assignedâ€, & Me.ClaimMonitor & vbCrLf & vbCrLf &
"Thanks")
I am trying to create the note below in the Click On \ Event Property –
which is added in the body of an email. I am having repeated problems and
continue to go back and forth with little success. Also, I am not sure how to
have the coding not show all on one line in the VB editor. Can you help?
The coding I have is further below.
Good Day,
Please note; you have been assigned the following WIT entry
DataTRAK Number – (Linked field with number) Effective Date: (Link to form
field Effective Date)
Production Assigned - (Link to the drop down field)
QA Reviewer Assigned - (Link to the drop down field)
Second Tester Assigned - (Link to the drop down field)
Claims Monitoring Assigned - (Link to the drop down field)
Thanks
Private Sub SendEmail_Click()
Dim SendTo As String
SendTo = DLookup("[EmailAddress]", "tblBenefitsEmployee", "[EmployeeID] =
" & Me.Productionassignedname)
SendTo = SendTo & ";" & DLookup("[EmailAddress]", "tblBenefitsEmployee",
"[EmployeeID] = " & Me.Q_A)
Call ComposeNotesMemo(SendTo, "Production Assigned and QA Assigned", "Good
Day," & vbCrLf & vbCrLf & "Please note; You have been assigned the following
WIT entry: DataTRAK Number --- " & Me.Datatrak_Number & vbCrLf & vbCrLf &
"Effective Date " & Me.EFFECTIVE_DATE & vbCrLf & vbCrLf & “Production
Assignedâ€, & Me.Production Assigned, & vbCrLf & “QA Reviewer Assignedâ€, &
Me.QandALead & vbCrLf & vbCrLf & “Second Tester Assignedâ€, & Me. Sectester &
vbCrLf & “Claims Monitoring Assignedâ€, & Me.ClaimMonitor & vbCrLf & vbCrLf &
"Thanks")