Stephen,
The other way that I can think of for doing this would be to apply a filter to the column and get the count of the number of rows remaining. You would also likely want to suspend painting of the grid while you do this.
this.ultraGrid1.BeginUpdate();this.ultraGrid1.DisplayLayout.Bands[0].ColumnFilters["Col 1"].FilterConditions.Add(FilterComparisionOperator.Equals, true);int count = this.ultraGrid1.Rows.GetFilteredInNonGroupByRows().Length;this.ultraGrid1.DisplayLayout.Bands[0].ColumnFilters["Col 1"].ClearFilterConditions();this.ultraGrid1.EndUpdate();
-Matt
I have never used summaries before but do you know if using summaries would do me any good?