It's great to be able to have tasks show up in a task report, and even better to be able to filter them so only the ones that are assigned to you show up.
But say you have a project page, and a confluence team has been set up for the project. Now I would like to add a task report to to the project page and filter the task show to the ones that have been assigned to the team using `@teamName`. At present the team doesn't come up as an option when I start typing the name in the `Assignee` field in the macro.
Is this possible? Is it a coming feature? Or is there a way to achieve this?
Hi @Kajsa -
Though you can @mention teams in Confluence, you cannot use teams as a parameter in the Task Report macro. There is no suggestion or improvement request with Atlassian either.
So, you can suggest the feature to Atlassian by going to https://jira.atlassian.com/secure/Dashboard.jspa.
Thanks,
Kris
Thanks Kris!
Should anyone find their way here in search of this same feature, here is a link to the request.
https://jira.atlassian.com/browse/CONFCLOUD-71032
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Kajsa ,
We can suggest a workaround with the help of the Table Filter and Charts for Confluence app.
Wrap your Task Report in the Table Toolbox macro and create the following nesting: Task Report <- Table Transformer <- Table Filter macro.
Go to the Table Transformer macro and create a custom SQL query:
SELECT *,
CASE
WHEN T1.'Assignee' LIKE "Katerina Kovriga"
THEN "HR"
WHEN T1.'Assignee' LIKE "Natalie Paramonova"
THEN "Sales"
END
AS 'Team'
FROM T1
As you can see from this example, we put our assignees to the corresponding teams. Now we can filter our tasks not only by assignees, but by their teams as well.
Just go to the Table Filter macro and set the dropdown filter for the required Team column.
Here is your result table in the view page mode:
Note that our example is a simple one just to show the case. You can modify this SQL query and have as many teams and teammates as you need in real life.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.