Expand my Community achievements bar.

SOLVED

Task Collection Text Mode

Avatar

Community Advisor

I am once again coming to all of you to help me with the text mode for my task collection. I have a Project report and can successfully pull the task collection to show the name and planned completion date but whenever I attempt to also add the parent name I get an error. The closest I came is parent ID which of course is a hot mess, but here is that code:

valueexpression=IF({numberOfChildren}=0,CONCAT({parentID},'-',{name},' - ',{plannedCompletionDate}))
1 Accepted Solution

Avatar

Correct answer by
Community Advisor

that's weird... API explorer implies {parent}.{name} should have worked... is this what's giving you the error?

View solution in original post

3 Replies

Avatar

Correct answer by
Community Advisor

that's weird... API explorer implies {parent}.{name} should have worked... is this what's giving you the error?

Avatar

Community Advisor

Thanks, Skye!! 100% human error, forgot the "."

That's what I get for trying to be productive on a Friday

Avatar

Level 6

You do not have a false statement for the IF condition

 

Try...

valueexpression=IF({numberOfChildren}=0,CONCAT({parentID},'-',{name},' - ',{plannedCompletionDate}),"")