Confluence Data Center
I am trying to create an automated chart from Jira Xray data that looks like this:
Each feature (represented by a row) has different numbers of test cases. Example data:
I need each row to be 100% with each status comprising some amount that equals 100%
I have been using Table Filter, Table Transformer, & Pivot Tables to try and accomplish this with no luck so reaching out for help from the community.
Hi @Sophia Kroening ,
You may use the following structure:
SELECT 'Feature',
'OK'*100/'Total' AS 'OK %',
'NOK'*100/'Total' AS 'NOK %',
'Blocked'*100/'Total' AS 'Blocked %',
'Not Tested'*100/'Total' AS 'Not Tested %'
FROM T*
Hope it helps your case.
Join the largest European gathering of the Atlassian Community and reimagine what’s possible when great teams and transformative technology come together. Plus, grab your Super Fan ticket now and save over €1,000 on your pass before prices rise on 3 June.
Register nowOnline forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.