One of my PivotGridColumnField's is a smalldatetime field from SQL Server. In the PivotGrid column header labels I want the dates to be formatted as MMM-yy, like Aug-15. I can accomplish that for the detail columns (the non-aggregate columns) by setting the DataFormatString="{0:MMM-yy}" But that format string is NOT applied to the label of the column total header. The aggregate column header label still reads: "08/01/2015 00:00:00 Total" If you allow a custom format to the detail column headers, it would be logical to assume I want that same custom format used in the aggregate column header. So in my example, that label should display: Aug-15 Total I was told in the Forum that I'd have to parse that column header string in the CellDataBound Event to get the date portion and then format it and use that to set the header text. That is a very UGLY solution. I don't want to strip the word "Total" out of that string and then then convert the date that remains to a string in the date format I want. Thanks, Brent