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

reduce value's in $Field listbox

Hi Guys,

I was wondering if anyone knows how to reduce the values of a $Field listbox.

Normaly i would say: if(match(XDimension,'1',2'),XDimension)

But because i want to show $Field -which i use for a dynamic chart-, this is not applicable.

I would like to achive this because it currently shows all the fields of the model.

Any ideas?

Thanks in advance!

Gr!

1 Solution

Accepted Solutions
marcus_sommer

Try it with expressions in chart/listbox like these:

= if(match($Field, 'Monat', 'Jahr'), $Field)

= if($Table = 'Kalender', $Field)

- Marcus

View solution in original post

2 Replies
marcus_sommer

Try it with expressions in chart/listbox like these:

= if(match($Field, 'Monat', 'Jahr'), $Field)

= if($Table = 'Kalender', $Field)

- Marcus

Not applicable
Author

Thanks allot. i thought this din't worked with $Field but it did indeed work!