Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
ecak2105
Contributor III
Contributor III

Set Analysis: Combo chart is not matching table

Hi guys,

I am currently facing some problems in set analysis.
The goal is to count the number of distinct IDs for works that start with '0' in the  Werk_EM

The original attempt used set analysis with the following syntax:

count({
  $<
    Werk_EM = {"$(=Index(Werk_EM, '0') = 1)"}
  > 
} distinct ID)


I want to count all the works that start with '0' and select them in a combo chart (line + bar chart). Afterwards, my table should automatically adapt to the filter that was selected in the chart. However, nothing happens in the table and the filter windows that I added do not apply to the selection that was described in the syntax.

Additionally, the combo chart disappears and only a line chart is displayed.


Could you help me out?

Thanks a lot!

Labels (5)
1 Solution

Accepted Solutions
tresesco
MVP
MVP

To make the search string work, remove dollar and try like:

count({
  $<
    Werk_EM = {"=Index(Werk_EM, '0') = 1"}
  > 
} distinct ID)

 

Or, simply

count({ $<Werk_EM = {"0*"}>} distinct ID)

View solution in original post

2 Replies
vikasmahajan

Hi,

in script you can create flag like 

if ( Werk_EM  = 0 ,1,0) as  Werk_EM_Flag,

 

in set analysis:

=count({$<Werk_EM_Flag  = {">0"}>} distinct Werk_EM)

Vikas

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.
tresesco
MVP
MVP

To make the search string work, remove dollar and try like:

count({
  $<
    Werk_EM = {"=Index(Werk_EM, '0') = 1"}
  > 
} distinct ID)

 

Or, simply

count({ $<Werk_EM = {"0*"}>} distinct ID)