Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Preview the results: when the issue is Done then is displayed with a strikethrough line:

Aggregating data

We want to count the resolved and unresolved issues: With the Table selected in the Outline view and the Binding tab on the Properties Editor, click on the Add Aggregaton... button, the click on the button to open the Expression Builder and type:

row["Resolved"]==true

Image Added

Click on the OK button to close the Expression Builder. Fill out the Aggreation Builder data as shown in the screen below. Observe that the Aggrgaton name and display name are: Count Resolved. The funtion to aggregate data is COUNT and the result type of the aggregation is Integer. Finally, we used the row["Resolved"] binding tocount how much resolved issues they are. We used the following Filter Condition for that:

row["Resolved"] = true



Image Added