Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to display filter on a chart?

Hi All,

I want to be able to display just the TRUE values on a graph. Currently how I have it set up is in the Dimensions, I have one field selected (Vendor) which has 3 vendor filters. And then I have three expressions (type of failures) selected. For each expression, they each have TRUE/FALSE filters (TRUE being the failure occurred on the vendor, FALSE being it did not). Right now, the bar graph displays the total count of both TRUE and FALSE values.

I apologize since I am completely new to Qlikview & SQL. Any help is appreciated.

4 Replies
MarcoWedel

please post some sample data and your expected result.

Anonymous
Not applicable
Author

This is a sample of the data I imported from Excel:

failure_example_table.PNG

I chose the following for expressions:

failure_example_expressions.PNG

And the Vendor for the Dimension:

failure_example_dimension.PNG

So in the chart it displays the total count of failures for each vendor.

failure_example_bargraph.PNG

I would like to know how to display just the true values of each failure type on each vendor. So for example, having vendor A show 3 for Hardware, 1 for Human Error and 1 for Software and then the same for vendors B and C.

balabhaskarqlik

May be try these expressions:

Count({<Software = {"TRUE"}>}Vendor)

Count({<Hardware = {"TRUE"}>}Vendor)

Count({<[Human Error] = {"TRUE"}>}Vendor).

Anonymous
Not applicable
Author

Where would I put those expressions? When I put them under conditional, the bars disappear.