Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I need to limit rows in Qliksense straight table by giving country filter. We have many countries data in that table, But I need to show only US (i.e. where country='US') data in the straight table. Can someone please suggest how to achieve this ?
In one of your dimensions, have something like this
If( [Driver Is Active] = 'N', [Driver Id] )
And then you uncheck the box labeled "Include null values'
or better yet in your case
If( Country = 'US', Country )
maybe this:
sum( {< country = {'US'} >} your_measure )
In one of your dimensions, have something like this
If( [Driver Is Active] = 'N', [Driver Id] )
And then you uncheck the box labeled "Include null values'
or better yet in your case
If( Country = 'US', Country )
Hi,
If you want to filter a table, you must use "Set Analysis":
Function({<Country={'US'}>} measure)
Cheers
Why does he have to use Set Analysis?
Because is more efficient than use an if statement.
If you want to filter a table without user intervention, use Set Analysis is the best way.
Create a calculated dimension
if(Country='US',Country)
or
in expression use in set analysis
for examples
= sum({<country={'US'}>} sales)
Thanks all for the response.
I'm not using any measures in the straight table, just few dimensions. So I have to use If condition.