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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

excluding a field in a dimension - easy answer?

Hi collective,

I am building a pivot table and one of the dimensions contains a text string "No abnormalities detected". All I want to do is exclude this statement and any associated data from the pivot table. If it was a set analysis I want the set  of everything that was not "No abnormalities detected". Any ideas how to do this?

I am sure its pretty easy but I'm a noob!

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Hi there,

Try this:

Choose on the dimensions tab: Add calculated dimension.

Type: =if(your_dimension<>'No abnormalities detected', your_dimension)

Make sure you check the box Supress When Value Is Null.

Kind regards,

Henco

View solution in original post

2 Replies
Anonymous
Not applicable
Author

Hi there,

Try this:

Choose on the dimensions tab: Add calculated dimension.

Type: =if(your_dimension<>'No abnormalities detected', your_dimension)

Make sure you check the box Supress When Value Is Null.

Kind regards,

Henco

Not applicable
Author

Of course the good old if expression!

Thanks Henco - apprecated!