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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to make the dashboard to hide certain information?

Hi,

I have problem to do the display certain information in the qlikview

How I can hide certain information in my dashboard?For example, I want the dashboard do not display any information in the EMployment Status that is stated 'Not Active'.

I want the graphs, and the other filters do not show the 'Not Active' employees.

pp.PNG.png

Regards,

Kama

12 Replies
Not applicable
Author

HI,

When I edit the sriptSQLLL.PNG.png

I got thhis error,

sql error.PNG.png

rustyfishbones
Master II
Master II

Hi the issue here is with the ! on the SQL SELECT

It should be

SELECT
*

FROM TableName

WHERE EMployment Status <> 'Not Active';

jagan
Partner - Champion III
Partner - Champion III

Hi,

I think the issue is with Not Equal to operator, try this

TableName:

SQL SELECT

*

FROM DataSource

WHERE EMployment Status <> 'Not Active';

I think the space in column name EMployment Status is also causing the issue, try this where condition

WHERE [EMployment Status] <> 'Not Active';

WHERE [EMployment Status] != 'Not Active';


OR

TableName:

SQL SELECT

*

FROM DataSource

WHERE [EMployment Status] NOT IN ( 'Not Active');


Which database are you using?


Hope this helps you.


Regards,

Jagan.