Hey @Charly-Moreno
try this:
myListItems.Rows(0)("ProjectNr").ToString
If you want all values from this column try this:
String.Join(Environment.NewLine, myListItems.AsEnumerable().Select(Function(r) r("ProjectNr").ToString()))
1 Like