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

Conditional show

Hi there,

it's three days that i m trying to do that but i don't manage to make it work although it might be quiet easy.

I've this conditional show: GetFieldSelections(Mes_DescN)='01 Ene' that shows me the expression if the 01 Ene is selectionned in my list box.

However, my problem is that i would like it to be shown even if you select '01 ene' AND other value, and this doesn't work so far.

As you might have understood, my list box is a calendar with the 12 months of the year.

Hope i'm clear

thanks

1 Solution

Accepted Solutions
Not applicable
Author

I've got it:

Match('01 Ene',Mes_DescN)

Thanks anyway

View solution in original post

5 Replies
Not applicable
Author

try getselectedcount(MES DESCN) <x while x is the number of maximum selections

Not applicable
Author

Sorry but doesn't work.

i was thinking of a MIN(GetFieldSelections(Mes_DescN)='01 Ene') but doesn't work either

Not applicable
Author

Actually i'd need something that tells that: if at least the '01 Ene' is selected, the expression is shown.

Not applicable
Author

I've got it:

Match('01 Ene',Mes_DescN)

Thanks anyway

Not applicable
Author

How about this:

if

(left(getfieldselections(MES_DescN),6)='01 Ene' and getselectedcount(MES_DescN)=2,1,0)



This function checks if the first selected value from the field MES_DescN is "01 Ene" and exact one other value is selected.