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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Is it possible to remove one value in listbox?

Hi~~i want to know that is it possible to remove "implemented" in the listbox of "Purpose".

Capture.PNG.png

Do i need to change in script? But in the script, it just show like this:

Capture.PNG.png

So, what should i do?

28 Replies
its_anandrjs
Champion III
Champion III

In expression write your expression like

Count({<Purpose = {'Recovery','User request' >}Your sum or count Value)


Or


If use in dimension then write calculated dimension for Purpose

=If(Purpose='Recovery','Recovery',

  If(Purpose='User Request','User Request'))

Or

=If(Purpose <>'Implementation',Purpose)

arsal_90
Creator III
Creator III

use this in chart dimension

=AGGR(ONLY({<Purpose-={'Implementation'}>} Purpose ), Purpose )

or if(Purpose='Implementation','',Purpose)

Not applicable
Author

I did the way u taught, but i also want to remove implemented char.   

arsal_90
Creator III
Creator III

Can u share the image after implementing my script and please clear what exactly you want

jagan
Partner - Champion III
Partner - Champion III

Hi,

Try like this

Count({<Purpose = {'Recovery','User Request' >} MeasureName)


OR

Sum({<Purpose = {'Recovery','User Request' >} MeasureName)


Regards,

Jagan.

Not applicable
Author

Capture.PNG.png

I want to remove the chart of implemented(the red color one)

arsal_90
Creator III
Creator III

whats you expression can u share me

arsal_90
Creator III
Creator III

can u post your qvw

Not applicable
Author

Capture.PNG.png

Capture1.PNG.png

jagan
Partner - Champion III
Partner - Champion III

Hi,

Did you tried filtering using Set Analysis instead Dynamic Dimensions like this

Count({<Purpose = {'Recovery','User Request' >} MeasureName)


OR

Sum({<Purpose = {'Recovery','User Request' >} MeasureName)


Regards,

Jagan.