'Taskjuggler - Resource name in taskreport

Ho can I make the resource names appear in the task reports? There is a column 'resources' that I simply use as such:

taskreport overview "" {
  scenarios plan
  columns bsi { title 'WBS' },
  name, start, end, resources, chart { width 1400 ${TaskTip} }
  period 2021-07-30 +9m
}

However, this will put the resource ID and the name in it. E.g. if I have a resource like: resource w1 "Worker One" {} the column will contain "w1 (Worker One)".

But I just want the name.



Solution 1:[1]

You can add parameters to the resources column specification. This does the trick:

resources { listitem "<-query attribute='name'->" }

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 user18465429