...
Repeat the process described above and add a new aggragtion named Count Unresolved for the unresolved issues
row["Resolved"] == false
and check that both aggregations have been added as bindings on the Table item:
...
Now, our table counts resolved and unresolved issues, but the result is displayed nowhere. We have to add some visualization somewhere:for that: Drag&drop a Data item from the Palette view into a Table's Footer cell. This will automatically open the New Binding Dialog as show below. Fill out the Column Binding and Display names to Footer Progress and keep the default Data Type (String). Then click on the button to open the Expression Builder dialog and type the following expression:
"Resolved vs Unresolved: " + row["Count Resolved"] + "/" + row["Count Unresolved"]
Close all the dialogs, run the report and navigate to the latest page to see the Table's Footer and the Resolved vs Unresolved amounts: