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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
New-Qlik
Creator III
Creator III

Subset Ratio

I have requirement to  show subset ratio the one we get in data model into front end as a KPI or in nay form.

Thanks in advance

15 Replies
Quy_Nguyen
Specialist
Specialist

As my understanding, sankey chart is not suitable for this case because of the subset ratio principle.

I suggest using Venn Chart.

rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

Nice explanation and example ipcducquy‌!

-Rob

New-Qlik
Creator III
Creator III
Author

hi Quy,

how do I insert flag column with one value throughout in a QS script for database column

Quy_Nguyen
Specialist
Specialist

Thank you for your compliment Rob!

Quy_Nguyen
Specialist
Specialist

Hi,

You can use preceding load with your SQL load statement. Below is just an example:

Customer:
LOAD

    [Customer Number]   

    Country,
   
City,
    1 As CustomerFlag
;
SQL
SELECT [Customer Number]
   
Country,
   
City

FROM Customer ;

New-Qlik
Creator III
Creator III
Author

Yes got it after posting . thanku