Hi,
I have the single band, with several groupby rows. Those rows are grouped by ColumnA. I would like to sort groupby rows by values in ColumnB. It's guaranteed that values in columnB do not change for a groupby row. I couldn't find a way to do it. Is it possible? Thanks,
Vitaly
Hi Vitaly,
VisitorS said:is there another way to do the same thing?
Nope... using a GroupByComparer is the only way to do it.
I created the GroupByRowComparer and assigned it to my groupby column's GroupByComparer property. In the Compare method I compare the cell values of the first child row of two passed in GroupBy rows. That works fine.
Although I doubt, anyway let me ask: is there another way to do the same thing?
-Vitaly