Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
sdtfll
Contributor III
Contributor III

only show the rows which I want, exclude the others in chart page

I have a table as below:

load * inline [

ID,name

A,Grant

B,Joey

C,Edmond

D,Antony

];

 

I need to create a chart page, and only list the ID(A,B) ,exclude (C,D)

the result like this:

ID  name

A  Grant

B   Joey

 

When I drag the filed ID and name into chart, all IDs are there, how to exclude C and D in chart side ?

(not in script side with where not xx)

1 Solution

Accepted Solutions
arulsettu
Master III
Master III

maybe like this as dimension in the chart

if(Match(ID,'A','B'),ID)

View solution in original post

1 Reply
arulsettu
Master III
Master III

maybe like this as dimension in the chart

if(Match(ID,'A','B'),ID)