Skip to main content
Nintex Community Menu Bar

Saving a multiselect control to a database

  • October 24, 2016
  • 2 replies
  • 9 views

Forum|alt.badge.img+1

I have successfully disaplayed data in a multiselect control and it is working fine. However, it saves the selected values as one record, with the selected values delimited. I want to be able to create a record for each item selected. Is this possible with this control?

2 replies

Forum|alt.badge.img+7
  • November 7, 2016

I cannot think of a way to do this in the form but you can do it in a workflow. There is a "for each" function in the work flow that can take a delimited list and do something like create a record for each item. Just pass the data into a workflow field.

 

The form has a "for each" funtion but I think it only works when mutiple records already exist.

 

I hope this helps


Forum|alt.badge.img+1
  • Author
  • November 16, 2016

Thanks for your help. I ended up passing the string from the multiselect into a stored procedure and then using a split function to separate it out.Thanks