I have a datatable and after transposing it I’m wanting to allow the end user to sort by the old columns that are now rows. Is it possible for the end user to select a specific row and sort it asc or desc, in the same fashion as sorting a column? TIA
Note: These are example tables

You could keep a reference to the original data table (if asp.net, in
Session, for example) and when the row is clicked, you map it to the original column, sort the original DataTable, retranspose it and rebind it.