
Announcements
Hello,
I have a form which the user can select multiple items from the combobox. The field in the SP List is a LookUp field.
When the user submits the form, I store the data submitted into a variable and then an email is to be sent with the relevant info. I am using HTML to write the context of the email and pull out the relevant data.
However, I can't get it to display the items that have been selected in the combobox.
I would like it to display each selected item in a list, one under the other, so i though this formula would be ok:
Concat(varRequest.Equipment&"<br>")
However, it doesn't work and i get an error.
Is it possible and if so how do i go about it?
thanks
I managed to get this fixed. Instead of storing to a variable, I stored the data to a collection.
I then used Concat on that collection, and used a Concat within this to extract the data required:
Concat(Request, Concat(Equipment,Value&"<br>"))