The all selected options must be stored in entity row/column cell as a string where all options are separated by comma.
Share detailed instruction : How to use multiselect dropdown in Uipath Apps and Connect it to entity
Thanks for response.
I watched and followed it its not working.
I request you to please share demo.
- Initialize Variables
selectedOptions = New List(Of String) // List of selected options
selectedOptionsString = “” // String to store the final options string
2.Get user selections (use your actual method of collecting selections)
selectedOptions = { “Option1”, “Option2”, “Option3” } // Example of selected options
Use an Input Dialog or Form to get these options dynamically if needed
3.Join the selected options into a single string
selectedOptionsString = String.Join(", ", selectedOptions)
-
Assume you have a DataTable initialized
dataTable = New DataTable
dataTable.Columns.Add(“SelectedOptions”) -
Add a row to your DataTable
dataTable.Rows.Add() // Create a new row
Store the selected options string in the first row of the “SelectedOptions” column
dataTable.Rows(0)(“SelectedOptions”) = selectedOptionsString
thanks
Can you share it for UiPath Apps. I think you are sharing it for Studio.
Any update regarding this multiselect dropdown ?
I tried both approaches but it doesn’t work also they are using old version of the UiPath.
@shubham.jadhav maybe you did find out already. But the following formula should help.
String.Join(“;”, MainPage.Multiselectdropdown.SelectedItems.Select(Function(item) item.ENTITYColumn))