I have a grid and I have Row Summary on - I choose Max and it says 6. My column is of Int32s but it comes up w/ 6 rather than 15.
My Column has say: 0, 1, 2, 3, 4, 5, 6, 13, 15 but it comes up w/ 6 which would be the max in terms of strings but not in terms of Integers.
I want Min / Max to do a numeric Min / Max rather than a String Min / Max. Is there any way of getting Min / Max to work for a Summary of Integers?
It had to do w/ UltraDataSource which makes everything strings unless defined manually. I assumed pushing int32s into a column it would make the column int32 not string.
I needed to force it manually via the following code:
src.Band.Columns.Add(
"Equipments", Type.GetType("System.Nullable`1[System.Int32]"));
My guess is that the DataType of your column is a string and not an int.