Crystal Reports · Schema

RunningTotal

A running total field

Business IntelligenceCrystal ReportsData AnalyticsEnterprise SoftwareReportingSAP

Properties

Name Type Description
name string Running total field name
field string Field being totaled
operation string Aggregation operation
reset_condition string Condition that resets the running total
View JSON Schema on GitHub

JSON Schema

crystal-reports-running-total-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/crystal-reports/refs/heads/main/json-schema/crystal-reports-running-total-schema.json",
  "title": "RunningTotal",
  "description": "A running total field",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Running total field name",
      "example": "RunningTotal_OrderAmount"
    },
    "field": {
      "type": "string",
      "description": "Field being totaled",
      "example": "Order Amount"
    },
    "operation": {
      "type": "string",
      "description": "Aggregation operation",
      "example": "Sum"
    },
    "reset_condition": {
      "type": "string",
      "description": "Condition that resets the running total",
      "example": "OnGroupChange"
    }
  }
}