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: 
Anonymous
Not applicable

Hiding multiple records in a Column

Hello,

Below data is in Pivot table.

Requirement: Related data should not display when "Department Type" is "Sales" and "HR".

Input Data:

"Date" "Category" "Department Type" "Employee"

1      IT                   Software                A

2    NonIT               Sales                     B

3    NonIT               Sales                     C

4     IT                    Software                 D

5     IT                    Software                 E

6   IT-Related         HR                         F

Required Data after suppression of null values.

"Date" "Category" "Department Type" "Employee"

1      IT                   Software                 A

4     IT                    Software                 D

5     IT                    Software                 E

1 Reply
alexandros17
Partner - Champion III
Partner - Champion III

IN dimension write:

If([Department Type] = 'Sales' or [Department Type] = 'HR', null(), [Department Type])

and check the checkbox "Suppress values when null"