views:

106

answers:

0

Is there a way to do cross tab in the datatable ? eg : a function as following taking a datable and returning a crosstab datatable

Public Function CrossTab(ByVal dtS As DataTable) As DataTable 
' Change rows to columns and columns to rows
' The First Column Changes into Row Titles
' The Row Titles changes into the first column
End Function