Spotfire limit data by text

Chris

I have a string column [VEHICLE] that contains row variations of "car", "CAR", "car" and "car1". I'm trying to use a limit data by expression to exclude all of those variations. I've tried Lower([VEHICLE]) ~= "*car*" but it isn't working. Any ideas?

scsimon

You were very close. In Limit Data Using Expression use this instead.

IF(Lower([Vehicle]) ~= "car*",true,false)

or even better... in case you have car$ or something that isn't a-z

IF(Lower([Vehicle]) ~= "car.*",true,false)

or if you expect something to become before car... like thisCar1 use this:

IF(Lower([Vehicle]) ~= ".*car.*",true,false)

In the second example, . is any character and * is stating match 0 or more of this instance. Without the *, which is what you had, it's stating match 0 or more of instances of... nothing. You just have to give it something to reference.

Remeber ~= uses Regular Expressions

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Spotfire limit data using expression by date

From Dev

Spotfire limit data using expression by date

From Dev

Remove data from graph that contains certain text Spotfire

From Dev

Output Spotfire 'print' to text file

From Dev

Spotfire Case statement find text

From Dev

Animating Data Changes in Tibco Spotfire

From Dev

Rank within subsets of data in spotfire

From Dev

Spotfire: Changing Pivot Data by Filtering Original Data

From Dev

TIBCO Spotfire Advanced Data Services = data warehouse

From Dev

Accessing Calculated Value in Text Area Spotfire

From Dev

Spotfire IronPython script: get Cross Table data

From Dev

Spotfire IronPython script: Delete a data-table

From Dev

Spotfire Data Table Write Back to Database

From Dev

Oracle Function not retrieving data to Spotfire quickly

From Dev

Displaying zero values in spotfire data visualization

From Dev

Spotfire - Adding dynamic date restriction to data table which is based on an information link. Spotfire 6.0.1

From Dev

Set limit of text file

From Dev

Limit TD text length

From Dev

Limit Text Input in TextField

From Dev

Text character limit

From Dev

Text box character limit

From Dev

Limit EditText text length

From Dev

Limit amount of text of a string

From Dev

Limit string with jquery on text()

From Dev

Using OVER function in Spotfire to produce cumulative sum in a data table

From Dev

How to create a data table on the fly in Spotfire via python

From Dev

Does Spotfire Server do any caching beyond On-Demand data?

From Dev

spotfire ironpython : Append new row to a data-table

From Dev

Can I use Oracle Stored procedure as a data source for Spotfire?

Related Related

HotTag

Archive