Hi,
I'm using version 7.15
I have data that each record is a test results.
I'm trying to build this table, that contain failed tests only:
Test Name Fail Tests Count Success Rate (%)
Test 1 4 80%
Test 2 3 90%
First I did this, I used a filter to bring only the failed tests, but than I can't get the pass rate:
Now I want to add the "Success Rate" so I'm removing the filter that bring only the failed tests because I want to know the pass rate from all tests that run.
So I tried to replace the value of the column "Fail Tests Count" using a formula:
count(kql='testcaseStatus.keyword:Failed')
But I don't get the same results of Count of Records:
Why there are differences? Shouldn't it give the same result?
Thanks,
Shay