Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

display specific data in straight table

Hi, is there a way to display specific data in straight table? for example, display only data for site a,b and c out of many different sites? What is the script to put in 'expression'? Thanks.

3 Replies
jagan
Partner - Champion III
Partner - Champion III

HI,

Try like this, in expression define set analysis to display only specific values

=Sum({<site={'a', 'b', 'c'}>} MeasureName)

Regards,

jagan.

Not applicable
Author

Hi,

Instead of expression, Under Dimension Tab

You can add Calculated dimension like below:

if(Site='a' or Site='b' or Site='c',Site)

Hope it may help.....

its_anandrjs
Champion III
Champion III

You can achieve this by calculated dimension or SET expression in the expression.

1. By calculated dimension


if(Match(site,'a','b','c'),site)

//And select suppress when value null


2. By SET expression


Sum( {< site = {'a','b','c'} >}Measure)