Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
satishkurra
Specialist II
Specialist II

Quadrants in Scatter Plot (QlikView)

Hi

I attached the sample scatter plot which compares Revenue vs GM %.

I also added quadrants.

Is there a way to get the list of bubbles from lower left quadrant into a table?

I added fast change option to straight table and asked the user to click and open the details. But no luck

Please help

1 Solution

Accepted Solutions
jwjackso
Specialist III
Specialist III

It is basically the same thing.  I think you would want calculations (tables or set analysis) to represent each quadrant.  The bottom left quadrant would be less than the x-axis and less than the y-axis

=sum({1<[Eng. Revenue $]={"<$(=(Max(Aggr(Sum([Eng. Revenue $]),RecordID))+Min(Aggr(Sum([Eng. Revenue $]),RecordID)))/2)"},
[Gross Margin %]={"<=$(=(Max(Aggr(Sum([Gross Margin %]),RecordID))+Min(Aggr(Sum([Gross Margin %]),RecordID)))/2)"}>}[Gross Margin %])

QuadrantLB.PNG

View solution in original post

11 Replies
satishkurra
Specialist II
Specialist II
Author

Some one. Please help...

jwjackso
Specialist III
Specialist III

The manual way would just ask the user to select the bubbles in the quadrant and then the straight table should have the correct data.

Can you use the same formula that defines the quadrants in a set analysis expression.  Create 4 buttons, each representing a quadrant.  Each button has an action that assigns the formula to a variable.  If the variable is empty, it does not affect the content of the scatter chart. 

Sum({$<$(vQuadrant)>} Amt)

satishkurra
Specialist II
Specialist II
Author

I mentioned the manual way to user. It did not help.

They need to see the list of bottom left quadrant as Low performers in a table.

Not sure on what basis we need to capture the lower quadrant people

satishkurra
Specialist II
Specialist II
Author

Any one?

Please help

vishsaggi
Champion III
Champion III

Can you share some sample data and your expected output? Would be easy if you share a qvw file if possible?

satishkurra
Specialist II
Specialist II
Author

Attached is the sample APP.

I need the list of Record ID's in this scatter plot falling under lower quadrant. !

jwjackso
Specialist III
Specialist III

Can you do something like below.  I created a straight table and set the expression to be greater than the x-axis formula and less than the y-axis formula of the scatter plot reference lines.

=sum({1<[Eng. Revenue $]={"<$(=(Max(Aggr(Sum([Eng. Revenue $]),RecordID))+Min(Aggr(Sum([Eng. Revenue $]),RecordID)))/2)"},
[Gross Margin %]={">=$(=(Max(Aggr(Sum([Gross Margin %]),RecordID))+Min(Aggr(Sum([Gross Margin %]),RecordID)))/2)"}>}[Gross Margin %])

You could use a button to hide/show the straight table.

Quadrant.PNG

satishkurra
Specialist II
Specialist II
Author

This is fine. But we need the list of only record id's falling in lower left quadrant.

In this example, it is Record ID's 917 and 1723

satishkurra
Specialist II
Specialist II
Author

I just modified your expression as below and it worked.

Please let me know if this is fine?

=sum({1<[Eng. Revenue $]={"<$(=(Max(Aggr(Sum([Eng. Revenue $]),RecordID))+Min(Aggr(Sum([Eng. Revenue $]),RecordID)))/2)"},

[Gross Margin %]={"<=$(=(Max(Aggr(Sum([Gross Margin %]),RecordID))+Min(Aggr(Sum([Gross Margin %]),RecordID)))/2)"}>}[Gross Margin %])