Crystal Reports · Schema

Formula

A formula field defined in the report

Business IntelligenceCrystal ReportsData AnalyticsEnterprise SoftwareReportingSAP

Properties

Name Type Description
name string Formula field name
text string Formula expression text
View JSON Schema on GitHub

JSON Schema

crystal-reports-formula-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-formula-schema.json",
  "title": "Formula",
  "description": "A formula field defined in the report",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Formula field name",
      "example": "FullAddress"
    },
    "text": {
      "type": "string",
      "description": "Formula expression text",
      "example": "{Customer.Address1} & \", \" & {Customer.City}"
    }
  }
}