在spotfire中我有一个列属性fromDate和toDate是一个Date。我试图使用下面的表达式限制数据的结果。但我继续遇到这个错误
Invalid type for function call 'DocumentProperty' on line1, character 19
限制表达
[poddate] >= Date(DocumentProperty(${DevInfoYTD}.{Location}.{fromDate})) and
[poddate] <= Date(DocumentProperty(${DevInfoYTD}.{Location}.{toDate}))
如果我使用下面的表达式,我不会收到错误,但表格中没有数据显示。
[poddate] >= Date(${DevInfoYTD}.{Location}.{fromDate})
and [poddate] <= Date(${DevInfoYTD}.{Location}.{toDate})
关于如何修复它的任何想法?
答案 0 :(得分:1)
您不需要三部分标识符。我不确定应该是什么,但你只需要列出属性控件。
[poddate] >= Date("${YourPropertyControlName}")
AND
and [poddate] <= Date("${YourOtherPropertyControlName}")