Forum Discussion
Count rows that don't exist.
- 2 years ago
Hello nezzzz
if you dont want Result_Date in chart, I assumed it might be TestCaseID as you want to see those verdict number.
Both TC3 and TC4 have no result so it is empty (I believe you can not show it as 'No Result" value in visualization so "No Result" means empty value).
for this, create a measure with following DAX:
Verdict Calculation =var _Verdict = SELECTEDVALUE('TestCasesHistory'[Verdict])ReturnIF(ISBLANK(_Verdict),"No Value",DISTINCTCOUNT('TestCasesHistory'[Verdict]))then create a visual with 100% Stacked Bar.After that, you can plot those value into the visualHope this will help you.
Thank you.
Hey Irwan,
Thanks a lot for your reply!
I don't want to have the Result_Date in the chart (so the chart is going to look like your first screenshot), but in that chart, I would also like to have the % of No results. And yes, the % will be modified once 'No results' will be added. But as mentioned, I don't know how to count the number of days where there are no entries.
Hello nezzzz
if you dont want Result_Date in chart, I assumed it might be TestCaseID as you want to see those verdict number.
Both TC3 and TC4 have no result so it is empty (I believe you can not show it as 'No Result" value in visualization so "No Result" means empty value).
for this, create a measure with following DAX:
Hope this will help you.
Thank you.