Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Set Analysis problem with Chart Figures Association

Hi Everyone,

Just want to ask if you guys have workarounds or suggestion to fix my problem,

I have this expression with set analysis below on a variable (vPRCount)

  • Count({$<[PRPO PR Status] = -{'No PR'}>} DISTINCT [PRNo.])

then I have a Pie chart which uses the same field([PRPO PR Status]) above as its dimension and the variable(vPRCount) as its expression. The expression works and calculate properly but my problem is when I select a data in the field([PRPO PR Status]) the chart object is not associating with the selection.

For reference please see screenshots below of the object with and without the selection

     

Image 27.png    Image 31.png

Thanks !

Regards,

Charles

1 Solution

Accepted Solutions
tresesco
MVP
MVP

I guess negation symbol is misplaced for that desired behavior, it should come before '=' sign. Try:

Count({$<[PRPO PR Status] -={'No PR'}>} DISTINCT [PRNo.])

View solution in original post

1 Reply
tresesco
MVP
MVP

I guess negation symbol is misplaced for that desired behavior, it should come before '=' sign. Try:

Count({$<[PRPO PR Status] -={'No PR'}>} DISTINCT [PRNo.])