내 커뮤니티 업적 표시줄을 확대합니다.

Don’t miss the Workfront AMA: System Smarts & Strategic Starts! Ask your questions about keeping Workfront running smoothly, planning enhancements, reporting, or adoption, and get practical insights from Adobe experts.

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

Another day, another WF reporting question. I'd like to show all Projects within a Program on a Project level report, in the same cell.

Avatar

Level 3

I'd like to show all Projects in a Program, in the same cell, on a Project level report because there is some other contextual information all stored at the Project level that I'm sorting on or displaying.

I've seen this done at the Program level (showing all of its corresponding Projects within the same cell) with the calculation below.

displayname=Proejcts

listdelimiter=<p>

listmethod=nested(projects).lists

textmode=true

type=iterate

valuefield=project:name

valueformat=HTML

What am I missing to do this exact same thing, just on a Project level report?

주제

토픽은 커뮤니티 콘텐츠를 분류하여 관련성 있는 콘텐츠를 찾는 데 도움이 됩니다.

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Employee

Hey Ryan,

Give this a try. This should list all projects in the cell housed in the same program, in line with that project.

displayname=Projects

listdelimiter=<p>

listmethod=nested(program.projects).lists

textmode=true

type=iterate

valuefield=name

valueformat=HTML

Since we are at the project level already, I specified to go to program, then back down to projects in the listmethod. The valuefield= line will only need name as well since it's a direct field on the project table.

원본 게시물의 솔루션 보기

2 답변 개

Avatar

정확한 답변 작성자:
Employee

Hey Ryan,

Give this a try. This should list all projects in the cell housed in the same program, in line with that project.

displayname=Projects

listdelimiter=<p>

listmethod=nested(program.projects).lists

textmode=true

type=iterate

valuefield=name

valueformat=HTML

Since we are at the project level already, I specified to go to program, then back down to projects in the listmethod. The valuefield= line will only need name as well since it's a direct field on the project table.

Avatar

Level 3

That was it, thank you! I could have sworn I tried that very same thing, but I guess not. Thanks again!