Task list in text mode
- April 13, 2022
- 4 replies
- 1548 views
Hi I have a text mode for a field in view that gives me a list of all the tasks on the project with status
It seems to be ordering the tasks out of sync
Is there a way to sort by task number of task due date
As part of the concat formula I also want to include due date, but it pulls through as blank
Any help would be much appreciated
Textmode below with bold highlights of parts not working and attached picture of output
displayname=Tasks Names - % Complete - Due Date - Progress Status
listdelimiter=<p>
listmethod=nested(tasks).lists
querysort=task:dueDate
sortOrder=1
sortType=asc
textmode=true
type=iterate
valueexpression=IF({numberOfChildren}=0&&{status}='NEW',CONCAT("TO START - ",{name},' - ',{percentComplete},' - ',{dueDate},' - ',{progressStatus}),IF({numberOfChildren}=0&&{status}='INP',CONCAT("IN PROGRESS - ",{name},' - ',{percentComplete},' - ',{dueDate},' - ',{progressStatus}),IF({numberOfChildren}=0&&{status}='CPL',CONCAT("COMPLETE - ",{name},' - ',{percentComplete},' - ',{dueDate},' - ',{progressStatus}),IF({numberOfChildren}=0&&{status}='CPL:A',CONCAT("PENDING APPROVAL - ",{name},' - ',{percentComplete},' - ',{dueDate},' - ',{progressStatus}),IF({numberOfChildren}=0&&{status}='CPL:I',CONCAT("OPEN ISSUE - ",{name},' - ',{percentComplete},' - ',{dueDate},' - ',{progressStatus}),' ')))))
valueformat=HTML
Many thanks Dan

