HI!
I am have a task report that I need to group by the Business Unit, and then by the project Program. I was able to group by the project Business Unit without issue, but I can't pull in the project Program name with native functionality. I tried using text mode to achieve this (see below), but it returns the Program Name as "no value". Hoping someone can help me figure this out.
group.0.linkedname=direct
group.0.namekey=MSD Business Unit
group.0.valuefield=MSD Business Unit
group.0.valueformat=customDataLabelsAsString
group.1.linkedname=program
group.1.namekey=view.relatedcolumn
group.1.valuefield=program:name
group.1.namekeyargkey.0=program
group.1.namekeyargkey.1=name
group.1.valueformat=string
textmode=true
Thanks!
Views
Replies
Total Likes
Hi Maria,
Since it is a task report, I think you're missing the project level. Can you try this:
group.1.linkedname=program
group.1.namekey=view.relatedcolumn
group.1.valuefield=project:program:name
group.1.namekeyargkey.0=project
group.1.namekeyargkey.1=program
group.1.namekeyargkey.2=name
group.1.valueformat=string
Views
Replies
Total Likes
Hi Surya,
Your text mode allowed me to pull in the Program name for the project, but it caused the first grouping (Project Business Unit) to return "no value". The first grouping for the project business unit reverted to pulling the task business unit, which is not something have a field for so it doesn't pull in the information.
I hope I explained that well enough for you to understand. Thanks for the help!
Views
Replies
Total Likes
It looks like you arent pulling the Business Unit from the Project Level. Your code in the original post is referencing the Business Unit at the TAsk level which you stated does not exist. This should get you what you're looking for:
group.0.linkedname=project group.0.namekey=view.relatedcolumn group.0.namekeyargkey.0=project group.0.namekeyargkey.1=MSD Business Unit group.0.valuefield=project:MSD Business Unit group.0.valueformat=customDataLabelsAsString group.1.linkedname=program group.1.namekey=view.relatedcolumn group.1.namekeyargkey.0=project group.1.namekeyargkey.1=program group.1.namekeyargkey.2=name group.1.valuefield=project:program:name group.1.valueformat=string textmode=true
Views
Replies
Total Likes
Views
Likes
Replies