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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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 (1)
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!