Date Posted:
Product: TIBCO Spotfire®
Product: TIBCO Spotfire®
Problem:
How to create a calculated column based on tagging status?
Solution:
How do you create a calculated column based on a tag status of "Untagged"?
When trying to create a calculated column using an expression like:
IF([tagged column] = "Untagged","Fail","Pass")
All of the values in the new column are set to "Pass", as if Spotfire doesn't recognize any of the "Untagged" values.
A status of "Untagged" is seen as a blank field in Spotfire, so you have to access in that manner. You would use:
IF([tagged column] = "","Fail","Pass")
Comments
0 comments
Article is closed for comments.