Hi,
I have this data. How can I obtain like this.
Arrival and Departure are unique. Below code works for “Arrival” column I want to add Departure column too.
data.AsEnumerable().GroupBy(Function(a) a.Field(Of String)(“Arrival”)).Select(Function(c) c.First).CopyToDataTable()