Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
G_Hofstedt
Contributor
Contributor

How do I create this funnel chart?

I want to group invoices / amounts as shown below. An invoice of 50 will thus end up in all three groups. The groups consist of 500 or less, 250 or less, and 100 or less. An invoice of 450 should only end up in the first group.

1.jpg

How do I solve this? When I try with nested If statment invoice of 50 only group in the first category.

1 Solution

Accepted Solutions
fvelascog72
Partner - Specialist
Partner - Specialist

Hi,

Try with this:

test_3.png

Saludos

View solution in original post

4 Replies
zhadrakas
Specialist II
Specialist II

try with no Dimension an Expressions like this:

count(if(Invoice<=500 AND Invoice>250 , Invoice))

count(if(Invoice<=250 AND Invoice>100 , Invoice))

count(if(Invoice<=100, Invoice))

fvelascog72
Partner - Specialist
Partner - Specialist

Hi,

Try with this:

test_3.png

Saludos

siddharth_s3
Partner - Creator II
Partner - Creator II

If you are using Qlik Sense, you can find an extension.

G_Hofstedt
Contributor
Contributor
Author

Thanks, it seems to work