I want to feed in a data table to drop down has I have data table, which needs to use column batch number and have the batch numbers from the batch number column to be displayed how can this be achieved in UiPath App.
Use YourDataTable.AsEnumerable().Select(Function(r) r(“BatchNumber”).ToString).ToList() to generate the list.
Bind this list to the dropdown’s List Source in UiPath Apps and leave the Column property blank.
Hi @Aki1111
set dropdown items to
dtBatch.AsEnumerable().Select(Function(row) row(“BatchNumber”).ToString).ToList()
this shows batch numbers from the data table column in the dropdown.
ref: Apps - Dropdown

