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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
QlikViewStartup
Contributor
Contributor

Need to hide fields from the column

Hi All, 

I get 400 users data who work in multiple departments from my data source, but I need to show only 89 who belong to my department. 

how can I do that, need your help.

Anax.

 

1 Reply
JordyWegman
Partner - Master
Partner - Master

Hi,

You can solve this in different ways:

  • Script: Create a where statement

 

Table:
Load
   *
From [YourSource] (qvd)
Where [Department] = 'YourValue'
;

 

 

  • Front-end dimension: Create an IF statement and suppress Null() values in the dimension.

 

IF( [Department] = 'YourValue',
      [Department],
      null()
)

 

 

  • Front-end measure: Use set analysis

 

Sum( {$< [Department] = {'YourValue'} >} [Measure] )

 

 

Jordy

Climber

Work smarter, not harder