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

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

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

해결됨

Report to show what groups people are in?

Avatar

Level 10

I need a report that shows everyone who is in a certain group, or not in a certain group. Since "other groups" allows multiple groups populated, I can see why this isn't a field in a report.

I created a report called "Who is in Default Group" and made 2 columns -- "In the group" and "Not in the group". However, I don't know how to get that column to populate. I think I can do this easily with a Grouping instead of a column, but a column would be better. Is there a code to get that column to populate yes or no?

Here is my lame attempt at an IF -- the conditions are clearly not right, but I can't quite figure out what I'm doing wrong

I'm trying to say if they are Home Group=Default Group OR Other Group in Default Group then "Yes"

IF(homeGroupID=5f9b5eb9f7b1733de0538365290a5535_Mod=eq,"Yes",IF(otherGroupIDs=5f9b5eb9f7b1733de0538365290a5535_Mod=in,"Yes","No"))

displayname=In Default Group

textmode=true

valueformat=

주제

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

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Level 7

Hey Jill,

Groups is a collection so you would have to used the nested(userGroups) to get to this information. Since it will return a value for each group they are in, I would recommend just using yes and "" instead of no so you don't get a no for every group they are in.

displayname=All Groups

listdelimiter=<p>

listmethod=nested(userGroups).lists

textmode=true

type=iterate

valueexpression=IF(CONTAINS("5f9b5eb9f7b1733de0538365290a5535",{groupID}),"Yes","")

valueformat=HTML

Hope this helps!

원본 게시물의 솔루션 보기

2 답변 개

Avatar

정확한 답변 작성자:
Level 7

Hey Jill,

Groups is a collection so you would have to used the nested(userGroups) to get to this information. Since it will return a value for each group they are in, I would recommend just using yes and "" instead of no so you don't get a no for every group they are in.

displayname=All Groups

listdelimiter=<p>

listmethod=nested(userGroups).lists

textmode=true

type=iterate

valueexpression=IF(CONTAINS("5f9b5eb9f7b1733de0538365290a5535",{groupID}),"Yes","")

valueformat=HTML

Hope this helps!

Avatar

Level 10

This worked, thank you! I would never have known to use collections ...