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: 
johnjustus
Contributor III
Contributor III

Filter out in Straight table

Hi All,

I have a straight table as below in a Qlikview Document.

Name      Owner

Authorized        Keen

Un-Authorized  Steve

Late                   Keen

I don't want to show "Un-Authorized" in the straight table.

What would be the best way to filter out?

Thanks

1 Solution

Accepted Solutions
sunny_talwar

Use set analysis in your expression

{<Name -= {'Un-Authorized'}>}

Or calculated dimension

If(Not Match(Name, 'Un-Authorized'), Name)

and then make sure to check 'Suppress When Value Is Null' on the dimension tab

View solution in original post

3 Replies
sunny_talwar

Use set analysis in your expression

{<Name -= {'Un-Authorized'}>}

Or calculated dimension

If(Not Match(Name, 'Un-Authorized'), Name)

and then make sure to check 'Suppress When Value Is Null' on the dimension tab

johnjustus
Contributor III
Contributor III
Author

Thanks and that works

sunny_talwar

Great