Hi,
I have a form for ordering where i have preset the location and a code specific to that location. What i would like to happen for that is if someone chose two locations it only shows up on the email form as the last location shown. So doesnt give the supplier the correct codings. How do i get both location codes to show up on the email
The form is from sharepoint. The data card is set with the following code
Choices( [@QLDNT_Ordering]. 'Location & GL Code')
The email has the following code
Office365Outlook.SendEmailV2(
"email address",
"Communion order for - " & " " & DataCardValue99.Selected.Value,
"Hello," & "<br/>" &"<br/>" &
"Please confirm the below order for Campus information below" & "<br/>" & "<br/>"
& "<b> Date of Order:</b>" & " " & DataCardValue59.Text & "<br/>" & "<br/>" &
"<b> Location & GL Code:</b>" & " " & DataCardValue99.Selected.Value & "<br/>" & "<b> Order quantity: </b>" & " " & DataCardValue79.Text & " " & "packs of 100 units" & "<br/>" & "<br/>" & "<b> Additional Information: </b>" & "<br/>" & DataCardValue100.Text,
{
Cc: User().Email,
Importance: "Normal"
}
);
Notify("Communion order sent") & SubmitForm(Form3) & Navigate(QLDNTCONTACTLISTSCREEN) & ResetForm(Form3)