How to create a calculated column based on tagging status?
book
Article ID: KB0080581
calendar_today
Updated On:
Description
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.
Issue/Introduction
How to create a calculated column based on tagging status?
Environment
Product: TIBCO Spotfire Analyst/Desktop
Version: All supported versions
OS: Not Specified OS
--------------------
Resolution
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")
Feedback
thumb_up
Yes
thumb_down
No