Add a filter to an existing text mode field
I have a task report where I have a text mode column that is showing the assigned to name of a different task than what I’m reporting on which is why it’s in text mode.
But as we know with text mode, if the project has more than one task that meets the criteria, it’s going to pull two names into that column. Is it possible to expand on my existing text mode to only show one name in the column based on another field I’m using called “related invoice date”
so for example, my current text mode is:
displayname=Report Writer
listdelimiter=<div>
listmethod=nested(project.tasks).lists
type=iterate
valueexpression=IF({name}='Report Writer Allocation',{assignedTo}.{name})
valueformat=HTML
and I want the value expression to be: if the name contains report writer AND the related invoice date is last year, then show the assigned to name.
Is this possible? If so, can someone help me with the text mode?