Spotfire date expression error -


in spotfire have column property fromdate , todate date. trying limit result of data using expression below. keep on encountering error

invalid type function call 'documentproperty' on line1, character 19 

limit expression

[poddate] >= date(documentproperty(${devinfoytd}.{location}.{fromdate})) ,  [poddate] <= date(documentproperty(${devinfoytd}.{location}.{todate})) 

if used below expression don't error there no data shown on table.

[poddate] >= date(${devinfoytd}.{location}.{fromdate}) , [poddate] <= date(${devinfoytd}.{location}.{todate}) 

any ideas on how fix it?

you don't need 3 part identifier. i'm unsure of supposed be, need list property control.

[poddate] >= date("${yourpropertycontrolname}") , and [poddate] <= date("${yourotherpropertycontrolname}") 

Comments

Popular posts from this blog

networking - Vagrant-provisioned VirtualBox VM is not reachable from Ubuntu host -

c# - ASP.NET Core - There is already an object named 'AspNetRoles' in the database -

ruby on rails - ArgumentError: Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true -