Coding help for custom column in report
I'm new to creating custom columns in reports and I'm having trouble with the below.
I want to create a column that shows if a task is completed by looking for the task name and the percent complete is under 100%.
Here is the code that I came up with but it's not populating the column.
displayname= Instructor Materials Upload
listdelimiter=<br>
listmethod=nested(tasks).lists
textmode=true
type=iterate
valueexpression= IF({name}="Upload instructor materials"&&{percentComplete}<100,"Not Done","")
valueformat=HTML

