Nintex for SharePoint Forum
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
Hi @EdVonSchleck,
if you are receiving more than 1 result per iteration, there is something wrong with your filter.
You should receive only 1 result per field requested when filtering using ID == your_variable
The idea is that you receive a set of information
ID-1
Title-1
OtherField-1
and then use the build string action to build for example a table of all the elements you queried.
Edit:
You can set up a table using html markup in build string:
THE_MULTI_LINE_VARIABLE
<tr><td>YOUR_ID_VAR</td><td>YOUR_TITLE_VAR</td><td>YOUR_OTHER_VARS</td></tr>
Store the result in "THE_MULTI_LINE_VARIABLE"
After the foreach, place another build string
<table>
<tr><th>ID</th><th>Title</th><th>OTHER</th></tr>
THE_MULTI_LINE_VARIABLE
</table>
store again in THE_MULTI_LINE_VARIABLE
When you now send a mail containing the variable, you should receive a table