You can retrieve the first row’s “ProjectNr” value using belo:
projectNrValue = myListItems.Rows(0)(“ProjectNr”).ToString()
Use message box - projectNrValue
OR
For retrieve all “ProjectNr” values, use this code:
projectNrList = (From row In myListItems.AsEnumerable()
Select row.Field(Of String)(“ProjectNr”)).ToList()
Use message box use below:
String.Join(", ", projectNrList)
Happy Automation