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: 
matthewp
Creator III
Creator III

Qlikview remove ability to drill down on chart for a certain value

I have a basic bar chart that has 4 values on the X axis (`All`, `Yes`, `No` & `Deleted`) and then a `count` for the y axis.

I only want the user to be able to drill down on the `Yes`, `No` & `Deleted` bars and NOT the `All` bar.

Is this even possible?

1 Solution

Accepted Solutions
matthewp
Creator III
Creator III
Author

Actually solved this quite easily (for disabling them all in chart)

Right click > general > tick read only.

Then limit the list selection boxes

View solution in original post

8 Replies
Anonymous
Not applicable

Hi Matthew that is an interesting question. Is the 'All' bar a sum of the other bars ? What do you drill down too ? Are each of these bars expressions on their own ?

matthewp
Creator III
Creator III
Author

No the all bar is just a count of statuses with the status all.

It just drills down to only showing the all bar. infact i would be happy to just disable being able to select anything on the chart

Anonymous
Not applicable

Ok then you can just use set analysis in your expression like the following:-

I have made up names for your fields so the "YesNoAllField" - will be the one which contains the (`All`, `Yes`, `No` & `Deleted`) values and 'countmeasure' is the thing you are counting. Now you will see that clicking on (`All`, `Yes`, `No` & `Deleted`) will not make any selection in this chart.

=count({<YesNoAllField=>} countmeasure).

Let me know if this answers your question.

jonas_rezende
Specialist
Specialist

Hi, matthewp.

See if this helps.

Try execute following steps below:

  1. Menu Settings -> Document Propertiers;
  2. Groups tab;
  3. In Groups area choice Drill Down list;
  4. Click button Edit;
  5. In Use Fields area, choice the field desired;
  6. Replace current field by Ex.: if(Not Match('<field>','All'),<field>);
  7. Click Ok.

I hope this helps!

satishkurra
Specialist II
Specialist II

This cannot be achieved. Even i got this kind of requirement previously

Refer this

Drill-down problem

Not applicable

IF YesNoAllField  Field  having all the dimensions


  If your trying  to  showcase Yes,no Deleted in the x axis try to add calculate dimension like this


    If(  YesNoAllField  <>'All',YesNoAllField  ) this is your dimension and expression remains as it is

Let me know if my understanding correct or not

matthewp
Creator III
Creator III
Author

Actually solved this quite easily (for disabling them all in chart)

Right click > general > tick read only.

Then limit the list selection boxes

Anonymous
Not applicable

Brilliant solution  - well done I have never thought of clicking that !