Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Multibox ( Positive and negative)

Hi, i need help for this:

I have this table, and i need to create a multibox, with 2 values ( 1. Selecting the posives ,2. Selecting the negatives)

Is this posible?

NumNum PYDeltaDelta Pax %
a685738-53-7,2%
b364347174,9%
c253302-49-16,2%
d234224104,5%
e1961534328,1%
f1571075046,7%
Total2.4902.567-77-3,0%

Thanks

5 Replies
giakoum
Partner - Master II
Partner - Master II

yes if you create an expression :

Capture.PNG

Not applicable
Author

Hi,

You can put two expressions in different Mutli-box's like

If delta < 0 for negative values

and

If delta >0 for positive values

Regards,

KC

morganaaron
Specialist
Specialist

If you want it as one selection, create an expression as suggested and write:

If(Delta >= 0, 'Positive', 'Negative')

Which should give one selection of either positive or negative that will filter your delta values.

If you want them as separate drop down selections, you could have the actual values by writing:

If(Delta >= 0, Delta) and If(Delta<0, Delta) as two expressions.

Not applicable
Author

The problem is that this table box has a Dimension, so if i put in a separte object the multibox as positive and negative, this does not work

Thanks

morganaaron
Specialist
Specialist

A table box is a complete list of all data related to the fields you enter, so this shouldn't stop it from working.

Even if you had a straight table chart and had a dimension, it would still work. What's the exact problem you're facing? Can you post an example? Because any of the options above should work unless your delta field isn't an actual field and is a calculation of another value?