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

Announcements
Join us in Toronto Sept 9th 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

Hi,

Are you trying this for chart

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)

its_anandrjs
Champion III
Champion III

For purpose write like

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

Instead of

=If(Purpose = 'Implementation',Purpose) in place of = use <> (Not equals)

arjunkrishnan
Partner - Creator II
Partner - Creator II

Hai,

It's Possible One To Remove The Row Values In List Box..You May Write  Expression  in List Box Is't Possible

I Just  try Simple  List Box Expression It May Useful For U...

O/p Like That

If(Purpose<>'Implementation',Purpose)

Not applicable
Author

Use this Calculated Dimension

=If(Match(Purpose,'Implementation')>0,Purpose)

and tick Supress Null check box

arsal_90
Creator III
Creator III

Hi Wang can u post your expression not dimension expression

arsal_90
Creator III
Creator III

Wang

is it possible for you to post your sample qvw

its_anandrjs
Champion III
Champion III

Hi Wang,

Instead of doing this in the Calculated dimension as well as with if condition. If you load another field in the load script like for Purpose field in the table load and then use that field see like

Load

Purpose

If(Purpose<>'Implementation',Purpose) as PurposeExcept_Imple,

Field

..

..

From Location;


And use this field PurposeExcept_Imple but give your understandable name


Regards

Not applicable
Author

Is it like this?

Capture.PNG.png

But the red color bar(Implementation) still there

Capture.PNG.png

arsal_90
Creator III
Creator III

Wang

All thins is right Can u post your QVW.  and Weng why are you using two expressions. You just use this expression in your expression

Count({<Purpose={"Recovery","User Request"}-{"Implementation"}>} Purpose)

or  Count({<Purpose-={"Implementation"}>} Purpose)

Hope it will help you out