If field doesn't exist, return value from another field
Hi All,
We have a report that returns the users name for a specific role type in a project. The text looks like this:
displayname=Copywriter
listdelimiter=<br>
listmethod=nested(projectUsers).lists
type=iterate
valueexpression=IF({user}.{role}.{name}="Copywriter",{user}.{name})
valueformat=HTMLThis works well if that role type exists in the project. If that role type does not exist in the project, the column is blank. I am trying to solve for this use case. If that role type doesn't exist, pull in the username from another specified role type, "Copy Leadership".
I've tried using nested IFs, ORs, and EXISTS but can't seem to figure it out. I am newer to this side of WF, any tips help!