Jump to content

Display previous month from date chosen in filter in Spotfire Text Area


Egor Kasprov

Recommended Posts

I have plot and display Date filter for this plot in text area. Also I display numbers in other Text area from this grapgh - in 2 lines. for the first line - I need to show date chosen in filter for second line - previous date from chosen month in a filter. Do you have any ideas how to display second line. so, when I change date in filter in changes in both lines Thank you for your help.
Link to comment
Share on other sites

Hello,

One way to do it is via a python script to ,

1)Get the selected value from the filter-

https://community.spotfire.com/wiki/how-get-or-set-specific-filter-using-ironpython-script-tibco-spotfire

 

2)Write a python script to compare the date and set the document property to a previous month-

d = 'January,2019' (this is hard coded here for simplicity but it needs to be retrieved via the python script in step -1 as suggested above)

 

if 'January1' in d:

Document.Properties["prevmonth"]="December"

 

 

This python script can be triggered manually or via a data function (steps listed in this article)

https://support.tibco.com/s/article/Tibco-KnowledgeArticle-Article-45663...

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...