Nível 1
Nível 2
Faça login na Comunidade
Faça logon para exibir todas as medalhas
Hi all, I'm trying to use text mode in a report to gather all the project users in a column, based on their company ID and their home teams.
I have been using the expression below to gather users based on company ID only, can you help me with also adding home team as criteria?
displayname=xyz listdelimiter=<br> listmethod=nested(projectUsers).lists type=iterate valueexpression=IF(IN({user}.{companyID},"123"),CONCAT({user}.{name}),"") valueformat=HTML
Thank you!
Solucionado! Ir para a Solução.
Os tópicos ajudam a categorizar o conteúdo da comunidade e aumentam sua capacidade de descobrir conteúdo relevante.
Visualizações
respostas
Total de curtidas
You can include "and" in your value expression.
IF({user}.{companyID}="XYZ"&&{user}.{homeTeamID}="xyz",CONCAT({user}.{name}),"")
Condition operators in calculated custom expressions | Adobe Workfront
Visualizações
respostas
Total de curtidas
You can include "and" in your value expression.
IF({user}.{companyID}="XYZ"&&{user}.{homeTeamID}="xyz",CONCAT({user}.{name}),"")
Condition operators in calculated custom expressions | Adobe Workfront
Visualizações
respostas
Total de curtidas
If you just want to show the home team alongside the user, that can be appended as well, even stacked along with @KellieGardner's logic to filtering based on that criteria!
IF(IN({user}.{companyID},"XYZ"),CONCAT({user}.{name}, " - ", {user}.{homeTeam}.{name}),"")
Visualizações
respostas
Total de curtidas
Visualizações
Curtida
respostas
Visualizações
Curtida
respostas
Visualizações
Curtida
respostas