Creating Custom Measures in CX Analytics

The Custom Measures feature in CX Analytics allows supervisors and admins define metrics based on their operational needs. Admins can create new measures by combining existing data fields such as handle time or wait time, with built-in functions like aggregation, arithmetic, or logical operations.

Requirements for creating Custom Measures in CX Analytics

Table of Contents

How to create a Custom Measure

  1. Sign in to the Zoom web portal.
  2. In the left navigation, click Analytics & Reports then CX Analytics.
  3. Click Custom Measures.
  4. Select a dataset:
  5. Click Add then New measure.
  6. Enter a name for your custom measure.
  7. (Optional) Select a folder.
  8. Click Add.

How to use the function editor

The function editor provides a guided interface for creating simple measures.
  1. Select a Measure Type:
  2. Select a function (avg, min, max, sum) and a metric (for example, Hold duration).
  3. (Optional) Add a filter to narrow the scope of data. For example, count handled calls where Conversation duration > 1 hour.
  4. Click Save, then Publish to make the measure available in reports.

How to use the formula editor

The formula editor is ideal for advanced calculations using multiple fields, conditions, or arithmetic operations.
  1. Click the Formula Editor toggle.
  2. Select a Measure Type:
  3. Build your formula using functions and operators such as:
  4. Click Validate to check for errors and view a live preview.
  5. Click Save, then Publish.
Example:
To count abandoned calls where the wait time was between 30 and 60 seconds, use:

sumIf(`Abandoned`, `Abandon duration` > 30000 and `Abandon duration` <= 60000)

How to organize Custom Measures

You can organize custom measures into folders for easier management.
  1. Sign in to the Zoom web portal.
  2. In the left navigation, click Analytics & Reports then CX Analytics.
  3. Click Custom Measures.
  4. Click Add then New folder.
  5. Enter a name.
  6. Click Add.
  7. To move a measure, click the ellipsis icon next to it and select Move to another folder.

How to delete a Custom Measure

  1. Sign in to the Zoom web portal.
  2. In the left navigation, click Analytics & Reports then CX Analytics.
  3. Click Custom Measures.
  4. Select the dataset and folder.
  5. Click the ellipsis icon next to the measure and select Delete measure.
Deleting a custom measure removes it from all reports. Widgets using the deleted measure will display a message prompting you to select a new metric.

Example use cases

1. Custom naming

Rename existing metrics for clarity.
Example: Create “Shortest Inbound” using min(`Inbound conversation duration`)

2. Data bucketing

Group data into intervals for easier analysis.
Example: Abandoned call buckets:

sumIf(`Abandoned`, `Abandon duration` <= 15000)
sumIf(`Abandoned`, `Abandon duration` > 15000 and `Abandon duration` <= 30000)

3. Modifying existing metrics

Adjust metrics to fit your organization’s definitions.
Example: Exclude wrap-up time from handle duration using sum(`Handle duration` - `Wrap-up duration`)