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

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
cancel
Showing results for 
Search instead for 
Did you mean: 
kinjal1645
Creator
Creator

Varaibles in Set analysis

Hi,

I have below expressions:

vBucket = if(($(vsumA) < $(vA_hurdle) or trim(len($(vsumA))) <=1) and ($(vsumB) < $(vB_hurdle) or trim(len($(vsumB)))<=1),  'Low Low',
if(($(vsumA) < $(vA_hurdle) or trim(len($(vsumA))) <=1) and $(vsumB) > $(vB_hurdle),         'Low High',
if($(vsumA) > $(vA_hurdle)         and ($(vsumB) < $(vB_hurdle) or trim(len($(vsumB)))<=1),  'High Low',
if($(vsumA) > $(vA_hurdle)         and $(vsumB) > $(vB_hurdle),         'High High'))))

vsumA = sum(A_num)/sum(A_den)

vsumB = sum(B_num)/sum(B_den)

Capture.PNG

 

I want to show following summary: count, vSumA and vSumB for each bucket

This summary shouldn't change based on user selection. 

I tried multiple things but couldn't find any solution.

Kindly help!

@sunny_talwar @swuehl @tresB @Gysbert_Wassenaar 

 

Thanks

Labels (3)
1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

2 Replies
sunny_talwar
MVP
MVP

This?

image.png

kinjal1645
Creator
Creator
Author

Thanks Sunny 🙂