How to give Column Name in Select Item if using DataTable as List in Uipath Apps

Hi @Daniyal_Tahir

Try to Use this in the List Source:

yourDataTable.AsEnumerable().Select(Function(r) r(ColumnName).ToString).Distinct().ToArray()

Ensure ColumnName is set dynamically before using it.

Happy Automation.