Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
EGilbert
Contributor III
Contributor III

Organization Chart

I am working on an org chart and I have a number positions that are not currently filled.  They have position IDs but the names are showing as vacant.  I would like to exclude these when building the structure.  Is it possible to use set analysis focusing on employee name including 'vacant' or another field like employee id which would be blank? 

Labels (3)
1 Solution

Accepted Solutions
KGalloway
Creator II
Creator II

You could use an if statement in the primary dimension of your org chart. Here is an example:

KGalloway_0-1696432052760.png

 

The if statement in the dimension: if(label <> 'vacant', id) only allows ids with a non-vacant label to show. Everything else is set to null and the we uncheck the include null values box.

Let me know if I can clarify anything.

 

View solution in original post

1 Reply
KGalloway
Creator II
Creator II

You could use an if statement in the primary dimension of your org chart. Here is an example:

KGalloway_0-1696432052760.png

 

The if statement in the dimension: if(label <> 'vacant', id) only allows ids with a non-vacant label to show. Everything else is set to null and the we uncheck the include null values box.

Let me know if I can clarify anything.