Skip to end of banner
Go to start of banner

Displaying total values with average aggregation for data fields

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

This article provides a workaround to display the total values on the report when the aggregation is set to Average.

\uD83D\uDCD8 Instructions

Create 3 calculated fields to get the expected outcome:

  1. The first calculated field creates a Count of Issues field. The expression is:
    IF ELSE(NOT(IS NULL(Issue Key)), 1, 0)

    2024-07-22_19-50-42.png
  1. The second calculated field converts the Time to first response: Elapsed (ms) to minutes. The expression is: MULTIPLY(DIVIDE(Time to first response: Elapsed, 60000), 1)

    2024-07-22_19-50-55.png

  2. The third calculated field replicates the Time to first response: Elapsed field but in minutes. It is based on the first and second calculated fields. The expression is: MULTIPLY(DIVIDE(Time to First Response(in min), Count of issues), 1)

    2024-07-22_19-51-10.png

  3. Create a report by selecting this field: Average Aggregation(in min) instead of the Time to first response: Elapsed(ms) → Run → Save the report. The results are as follows.

    2024-07-22_19-47-47.png

  • No labels