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: 
andy-w
Contributor II
Contributor II

How to filter a table

I have a table containing several columns. I want to filter it, but can't add a filter to the filter shelf. So how do I filter this table?

Labels (2)
1 Solution

Accepted Solutions
jpenuliar
Partner - Specialist III
Partner - Specialist III

perhaps you need a Calculated Dimension?

Example:  

You have a field called Calendar Month that includes each of the months of the year. In your app, you want include a table that shows the sales for each of the first 6 months of the year. For the rest of the months, you want to see a total. You can use an expression to create this calculated dimension.

Syntax:  

If ([Calendar Month] <7, [Calendar Month], 'Rest')

View solution in original post

2 Replies
jpenuliar
Partner - Specialist III
Partner - Specialist III

perhaps you need a Calculated Dimension?

Example:  

You have a field called Calendar Month that includes each of the months of the year. In your app, you want include a table that shows the sales for each of the first 6 months of the year. For the rest of the months, you want to see a total. You can use an expression to create this calculated dimension.

Syntax:  

If ([Calendar Month] <7, [Calendar Month], 'Rest')

andy-w
Contributor II
Contributor II
Author

Thanks, calculated dimension is the way to do it. Shame I can't just put a field on the filter shelf.