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

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
MikeJones
Creator
Creator

Dimension in table with exclusions

Hi, I am wishing to create a table with the dimension that excludes where the status is unknown.  In my example below there would be only 3 employees.  I don't wish to use a filter pane.

Employee Status   Employee
Andrew Known   Mike
Brandon Unknown   Andrew
Gill Known   Gill
Jonathan Unknown    
Mike Known    
Labels (2)
3 Replies
MatheusC
Specialist II
Specialist II


Hello, @MikeJones 
You could try this in your load editor, restricting your table to only bring in Known status data.

Load

    your table

From [] (qvd) Where Status='Conhecido';

Did you find a solution to your question? Mark the solution as accepted and if you found it useful, press the like button!
MikeJones
Creator
Creator
Author

Thanks, Matheus for your idea.  However, on another sheet I need to have all the data showing.

Any other ideas?

vinieme12
Champion III
Champion III

There are two options you can restrict data in table or any chart

1) Restrict with the Measure: by using set analysis in all measures in the chart

for example

Dimension : Employee

Measure : count({<Status-={'Unknown'}>}Employee) 

 

2) Restrict dimension values: by using a Calculated dimension 

Dimension = Aggr(only({<Status-={'Unknown'}>}Employee) , Employee)

Measure = Count(Employee)

 

 

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.