Last active
November 1, 2023 16:30
-
-
Save vikrantyadav11/76efad8274b2a276d3c732f65b30edb5 to your computer and use it in GitHub Desktop.
Defect density using Structure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| with Story_Sum = sum{if(issuetype="Story" AND fixVersion = "2021 CapEx - Release 1" ,1)} | |
| : | |
| if(!Story_Sum;"No Story Found";not issuetype;sum | |
| {if((issuetype="Bug" OR issuetype="Customer Bug") AND fixVersion = "2021 CapEx - Release 1",1)} | |
| / Story_Sum) | |
| if(not issuetype,concat("*{color:red}",sum{if(issuetype="Story",1)}/sum{if(issuetype="Bug",1)},"{color}*")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment