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

Set Analysis (or fixed filter) on Dimension

Hi Qlikies,

I have a straight table with car models. I only wan to show cars with price over $100k.

Car Price

CarA 90k

CarB 110k

CarC 105k

CarD 80K

 

I want to have the table title as "Cars over 100k", and only shows rows as cars over 100K in the table.

Can I do that? 

 

Thanks 

 

1 Solution

Accepted Solutions
NZFei
Partner - Specialist
Partner - Specialist

Dimension: Car;

Expression:

if(Price>100000,
Price
)

View solution in original post

5 Replies
sergio0592
Specialist III
Specialist III

Hi,

As expression use :

sum({<Price={">100"}>} Price)

And remove k in your data. Let the just the sales amount. You can format your field after.

bing_jville
Contributor III
Contributor III
Author

Thanks, but I don't want to do a SUM, just individual rows of each car

bing_jville
Contributor III
Contributor III
Author

Thanks, but I don't want to do a SUM, just individual rows of each car

NZFei
Partner - Specialist
Partner - Specialist

Dimension: Car;

Expression:

if(Price>100000,
Price
)

bing_jville
Contributor III
Contributor III
Author

Thanks. I didn't design my question as I wanted. But I got a solution now.

I was trying to filter a table with something like "Count(SalesID)=0". So it is not set analysis on dimension, but using measure result as a filter.