Hi guys, I want to add some columns like pass/fail/total in my data table, but I don't know how to calculate the count of results and display them on data table.
For example, my records have following fields:
Version, feature name, testcase name, result .
I want to display on data table that how many testcases have pass/fail results when a particualr version and feature is used as a filter. So, the columns I want in my data table are:
Version, Feature, Total results(count of results under this feature), Pass(count of results having status as "Pass"), Fail(count of results having status as "Fail").
Please help me to achieve this.