Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Set analysis comparing Col A to Col B of different table

I have a table with three columns: Product, Client Name, and TierVal ... 0<=tierVal<=1

I have a separate table below:

Tier_Product:

LOAD * INLINE

[TIER_Product,Min_Product,Max_Product

Q1,0,0.25

Q2,0.25,0.5

Q3,0.5,0.75

Q4,0.75,1];

I want to create a bar chart counting the number of clients in each tier for a given product.

=count({$<Product={'Product A'},Tierval={">=Min_Product < Max_Product"}>} distinct Client)

I get 'no data to display'.  Any idea how to do this?

1 Reply
Not applicable
Author

Hi,

Use interval match function at script level to solve the issue.

Regards