0

Hello I am attempting to link data that is connected to a task on a project report using the text editor.

So far I have this as my code:

displayname=Recvd Medical Rates
linkedname=project:tasks
namekey=DE:Documentation Received Date
querysort=project:tasks:Document - Medical Rates:Documentation Received Date
textmode=true
valuefield=Documentation Received Date
valueformat=customDateAsString

I need to display data from a specific task within a specific custom form on a project report. I know there is no standard method of linking a project with a task, but the relationship is there and from my research It seems possible. I believe that I do not have the correct syntax.

Can somebody please help me with this. I have tried all types of combinations, I even tried adding the aggregator:

aggregator.displayformat=customDateAsString
aggregator.function=MIN 
aggregator.namekey=Documentation Received Date
aggregator.valuefield=DE:Documentation Received Date
aggregator.valueformat=customDateAsAtDate

Either way I try and link the information the actual entered data will not display. So far the report knows that it is a date field; I know this because I am able click into the field on the project report and choose a date, but the date will not remain selected once I have chosen it leading me to believe that the field is somehow linked, but done incorrectly.

Please help.

4

1 回答 1

0

答案如下:

displayname=Plans and Benefits Received
listdelimiter=
listmethod=nested(tasks).lists
textmode=true
type=iterate
valueexpression=IF(CONTAINS("Plans and Benefits",{name}),{actualCompletionDate})
valueformat=HTML

那么它是怎样工作的?见下文。

displayname=Plans and Benefits Received

^您想要的显示名称^

listdelimiter=

^决定分隔符^

listmethod=nested(tasks).lists

^调用嵌套或子任务^

textmode=true

^允许文本编辑器模式运行^

type=iterate

^使数据显示为原始的迭代^

valueexpression=IF(CONTAINS("Plans and Benefits",{name}),{actualCompletionDate})

^确定从哪里提取数据^

valueformat=HTML

^格式设置为 HTML^

于 2015-12-02T15:12:48.407 回答