Group by of a calculated decimal field fails in list viewIssue When group-by is performed on a decimal type of field with calculated value, List view does not show correct results, instead it groups them as empty even though values exist in list view. Due to this, reporting on calculated decimal field is also not possible. CauseGroup by of records is based on the values stored in the database, not on what is displayed on the form/list. The Calculation will manipulate the value displayed in a list or a form, but the actual value in the database is not changed until the record is updated. ResolutionThe calculated field is not updated at the database. Based on the above example, the display of the "decimal" field was manipulated, and from the database perspective it was never updated at all. In order to perform an update, use GlideRecord update() via Business Rules or Script Includes.