How to show only users of one home group assigned to a project within a column of a project report view | Community
Skip to main content
MatthewLi1
Level 3
June 5, 2024
Solved

How to show only users of one home group assigned to a project within a column of a project report view

  • June 5, 2024
  • 1 reply
  • 790 views

I'm looking to create a column within a view that shows only users within a certain home group that are assigned to tasks within the project. I've created a column using text mode reporting that pulls everyone assigned to a task within the project but my IF statement to link the users to their home group isn't working as intended. The home group ID is correct but when I run the report the column shows as blank after I've attempted to add this IF statement. 

description=Team Creative Users displayname=Creative Team listdelimiter=<div> listmethod=nested(projectUsers).lists textmode=true type=iterate valueexpression=IF({homeGroupID}=663912bb002808534afa30103e9d626c,CONCAT("* ",{user}.{name}),"") valueformat=HTML

 

Does anyone know what may be wrong with this if statement? I'm still trying to understand better text mode reporting, so I think I may have something wrong with my syntax here.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Richard_Le_

Hi,

displayname=Creative Team listdelimiter=<div> listmethod=nested(projectUsers).lists textmode=true type=iterate valueexpression=IF({user}.{homeGroupID}="663912bb002808534afa30103e9d626c",CONCAT("* ",{user}.{name}),"") valueformat=HTML

 

Best Regards,

Rich.

 

 

1 reply

Richard_Le_Community AdvisorAccepted solution
Community Advisor
June 5, 2024

Hi,

displayname=Creative Team listdelimiter=<div> listmethod=nested(projectUsers).lists textmode=true type=iterate valueexpression=IF({user}.{homeGroupID}="663912bb002808534afa30103e9d626c",CONCAT("* ",{user}.{name}),"") valueformat=HTML

 

Best Regards,

Rich.

 

 

MatthewLi1
Level 3
June 13, 2024

Thanks Rich! This worked!