I use the command
to group by difference_type
I get an the for the group difference_type by the the column difference type.
so the order of the group difference_type is:
"Full match"
"No match"
"One difference"
But I want it to be :
How to do?
Hi,
You can do this in a couple of different ways. I assume that, whether the column is grouped or not, you always want to sort the column in the same order. So the easiest thing to do would to create a class that implements IComprer and set the SortComparer on the column to an instance of that class.
I use datatable as datasource.
Which object should implement the icomparer?