Hi! I'd like to filter out a specific parent task from showing in a report. However, a filter is not working now that I've combined all tasks into one field. Anyone know how I might manipulate the valueexpression for the Project Tasks + Due Date column to also NOT CONTAIN "Fusion - Asset Inventory" parent task? Thanks in advance! New to using text mode!
displayname=Project Tasks + Due Date
listdelimiter=<p>
listmethod=nested(tasks).lists
textmode=true
type=iterate
valueexpression=IF(CONTAINS('Asset:',{name})=true," ",CONCAT({plannedCompletionDate}," - ",{name}))
valueformat=HTML
해결되었습니다! 솔루션으로 이동.
토픽은 커뮤니티 콘텐츠를 분류하여 관련성 있는 콘텐츠를 찾는 데 도움이 됩니다.
조회 수
답글
좋아요 수
I just looked at your task list you posted and see that it would filter out additional items in the milestones below so I would do 2 IF statements combined.
Try this:
IF(CONTAINS('Asset:',{name})," ",IF(CONTAINS('Fusion - Asset Inventory',{name}),"",CONCAT({plannedCompletionDate}," - ",{name})))
조회 수
답글
좋아요 수
HI @ColleenKl - You don't need the "= true" after the contains statement.
CONTAINS(findText, withinText)
See if this works:
IF(CONTAINS('Asset:',{name})," ",CONCAT({plannedCompletionDate}," - ",{name}))
조회 수
답글
좋아요 수
hey Kellie!
I need to keep the "Asset" statement in there b/c it's differentiating the two different task types we have - project column does NOT contain tasks with "Asset:" but the Asset Task column does. I want to also remove the "Fusion - Asset Inventory" parent task from what's showing in the project column, however. Does that make sense?
조회 수
답글
좋아요 수
Hi Colleen - To clarify, the code you posted above in your question works fine you just want new code that will remove only the task labeled "Fusion - Asset Inventory" from what displays in the column project tasks + Due date?
You can change the formula to just an if statement.
IF({name}="Fusion - Asset Inventory","",CONCAT({plannedCompletionDate}," - ", {name}))
.
조회 수
답글
좋아요 수
Almost - I don't want the list to display:
- tasks named "Fusion - Asset Inventory" OR
- tasks that include "Asset:"
조회 수
답글
좋아요 수
Then you should stick with your original code and remove the =true as mentioned above as it's not needed for a Contains statement.
IF(CONTAINS('Asset:',{name})," ",CONCAT({plannedCompletionDate}," - ",{name}))
This will not show any task where the name contains the word "asset" in any fashion.
조회 수
답글
좋아요 수
Sorry @KellieGardner apparently i'm not being very clear 😛
This works in the project task column:
valueexpression=IF(CONTAINS('Asset:',{name})=true," ",CONCAT({plannedCompletionDate}," - ",{name}))
This works in the asset task column:
valueexpression=IF(CONTAINS('Asset:',{name})=false," ",CONCAT({plannedCompletionDate}," - ",{name}))
For the project task column though, I want to ALSO filter out the parent task "Fusion - Asset Inventory" as it is not a "real" task assigned to anyone. It only holds all of our digital marketing asset tasks under it in the Task list of the project.
So the project task column shows all project milestones, and the asset task column shows all of the Asset Inventory from issues created within the project that have been converted to tasks. (see screen grab!)
조회 수
답글
좋아요 수
Did you try using the code I gave and it's still not giving you the results you want?
조회 수
답글
좋아요 수
Correct - when I removed the "true" from the formula, the "Fusion - Asset Inventory" task was still showing in the Project Task column.
조회 수
답글
좋아요 수
It looks like you would also need to remove the : as well since the parent task isn't formatted as "Asset:"
IF(CONTAINS('Asset',{name})," ",CONCAT({plannedCompletionDate}," - ",{name}))
조회 수
답글
좋아요 수
I just looked at your task list you posted and see that it would filter out additional items in the milestones below so I would do 2 IF statements combined.
Try this:
IF(CONTAINS('Asset:',{name})," ",IF(CONTAINS('Fusion - Asset Inventory',{name}),"",CONCAT({plannedCompletionDate}," - ",{name})))
조회 수
답글
좋아요 수
YES!! That worked! I knew it would have to be a double statement, but I'm still uncertain how to write those being so new to text mode. Any pointers on where to find a cheat sheet? 🙂
Thank you so much, Kellie, for sticking with me and for your help. So appreciate the extra brains coming together here!
조회 수
답글
좋아요 수
I knew we'd get there eventually. Just took a little processing.
I learned double IF statements in Excel and just kind of used that knowledge to transfer into Workfront text mode reporting.
Basically you'd write your if statement as normal except when you go to put in a "false" response you start the new IF statement. When doing mine I like to do new lines so I can see what I'm doing and get the right amount of parenthesis which is the hardest part for me.
IF(Something is True, then do something, otherwise do something else)
IF(true statement, then do this,
IF(2nd true statement, 2nd do this,
IF(3rd true statement, 3rd do this,
otherwise do this for everything else)))
It gets a little more tricky when you start inserting other variables into the if statements.
I'm sure there is somewhere online that would have training videos on how to do value expressions but I haven't looked into.
조회 수
답글
좋아요 수
Fabulous advice, Kellie. And I'm sure practice will make...semi-perfect 🙂
Thanks again! I'll try to find some resources and also take your cues to start new lines with each statement.
조회 수
답글
좋아요 수
Hi @ColleenKl,
Further to the excellent advice from @KellieGardner, I'd also suggest you consider using software such as Sublime or Visual Studio Code that have tools to help you format and keep track of the bracketing on complex if statements.
Regards,
Doug
조회 수
답글
좋아요 수
Hi Colleen,
You said that the Project tasks are milestones. Are you using a milestone path on the project and do you have them tagged? If so, you can use this textmode on a Project report to pull only those Project tasks:
valueexpression=IF(!ISBLANK({milestoneID}),CONCAT({plannedCompletionDate}," - ",{name}))
listdelimiter=<p>
listmethod=nested(tasks).lists
valueformat=HTML
displayname=Project Tasks + Due Date
textmode=true
type=iterate
This is my test schedule:
My test renders the following results:
I hope this helps,
Teale
조회 수
답글
좋아요 수
Hey Teale - interesting to see another perspective! We aren't using WF milestones currently. Internally, we reference project tasks as "milestones" to differentiate them from asset tasks. But cool to understand something different!
조회 수
답글
좋아요 수