I want to show Jira Sprint tasks overview in confluence. Below is my source table and the result of table transformer that already has most of what I wanted. I will NOT display source table to user.
Question: how do i modify my table transformer to add one more column !done to show unfinished tasks count (To do + In Progress)? Is it possible to add it right after Sprint column? Below is my current SQL query.
Hi @emagnun ,
Please check if this solution suits your case:
SELECT T1.'Sprint',
(T1.'Sum of Status To Do' + T1.'Sum of Status In Progress') AS 'Not Done',
T1.'Sum of Status Done' AS 'Done',
T1.'Sum of Status T:' AS 'Total',
ROUND((T1.'Sum of Status Done'*100)/T1.'Sum of Status T:',2) AS 'Completion %'
FROM T1
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online 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.