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

Stacked Bar Graph

Hi all,

I have a Stacked Bar Graph with same measures.
Each measure can have values: true and false
I need to count only the measures when the value is True.

Script ex:

Count(High_volume_Outlier_Comb_Machine_Learning)

Count only when "High_volume_Outlier_Comb_Machine_Learning" = True

Can we help me please?

 

Labels (3)
1 Solution

Accepted Solutions
Vegar
MVP
MVP

You could use set analysis, se expression below

Count(
{<High_volume_Outlier_Comb_Machine_Learning={"True"}>}
High_volume_Outlier_Comb_Machine_Learning)

View solution in original post

2 Replies
Vegar
MVP
MVP

You could use set analysis, se expression below

Count(
{<High_volume_Outlier_Comb_Machine_Learning={"True"}>}
High_volume_Outlier_Comb_Machine_Learning)
PaoloGuerra
Creator
Creator
Author

Hi Vegar,

it works!

Thank you very much!